Skip to content

Instantly share code, notes, and snippets.

@twosixcode
Created November 18, 2012 23:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twosixcode/4108154 to your computer and use it in GitHub Desktop.
Save twosixcode/4108154 to your computer and use it in GitHub Desktop.
Linked list of recent entry titles in Blocks
<h2>Previously... </h2>
<ul>
{% for entry in blx.entries.find({section: 'Blog', limit: '100', order: 'postDate desc'}) %}
<li><a href="{{ entry.url }}">{{ entry.title }}</a></li>
{% endfor %}
</ul>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment