Created
November 20, 2010 18:04
-
-
Save ilkka/708018 to your computer and use it in GitHub Desktop.
Jekyll archive page lister
This file contains 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
<li>Archives | |
<ul> | |
{% for pg in site.pages %} | |
{% if pg.type == 'archive' %} | |
<li><a href="{{ pg.url }}">{{ pg.title }}</a></li> | |
{% endif %} | |
{% endfor %} | |
</ul> | |
</li> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment