Skip to content

Instantly share code, notes, and snippets.

@twosixcode
twosixcode / entry_titles
Created November 18, 2012 23:34
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>
@twosixcode
twosixcode / entry_titles
Created November 18, 2012 23:34
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>