Skip to content

Instantly share code, notes, and snippets.

@erjjones
Created March 8, 2012 03:22
Show Gist options
  • Star 20 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save erjjones/1998382 to your computer and use it in GitHub Desktop.
Save erjjones/1998382 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 %}
@praveenpuglia
Copy link

Thanks a lot. site.posts was the THING. 😄

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment