Last active
August 29, 2015 14:13
-
-
Save davidpots/e4cd303837dc958aa036 to your computer and use it in GitHub Desktop.
Jekyll loop notes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul> | |
{% for podcast in site.podcasts %} | |
{% if podcast.tags contains 'funk' %} | |
<li>{{ podcast.title }}</li> | |
{% endif %} | |
{% endfor %} | |
</ul> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% assign sorted_songs = site.pages | sort: 'date' %} | |
{% for page in sorted_songs reversed %} | |
{% if page.categories contains 'song' %} | |
<div class="item"> | |
<a href="{{ site.baseurl }}{{ page.url }}">{{page.song_name}}</a> | |
</div> | |
{% endif %} | |
{% endfor %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment