Skip to content

Instantly share code, notes, and snippets.

@lgs
Forked from erjjones/JekyllListAllPosts.html
Created August 6, 2012 09:15
Show Gist options
  • Save lgs/3272476 to your computer and use it in GitHub Desktop.
Save lgs/3272476 to your computer and use it in GitHub Desktop.
Jekyll List All Posts
{% for post in site.posts %}
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p><small><strong>{{ post.date | date: "%B %e, %Y" }}</strong> . {{ post.category }} . <a href="http://erjjones.github.com{{ post.url }}#disqus_thread"></a></small></p>
{% endfor %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment