Created
November 18, 2012 23:34
-
-
Save twosixcode/4108156 to your computer and use it in GitHub Desktop.
Linked list of recent entry titles in Blocks
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
<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