Skip to content

Instantly share code, notes, and snippets.

@tommymarshall
Created December 24, 2013 15:19
Show Gist options
  • Save tommymarshall/8114674 to your computer and use it in GitHub Desktop.
Save tommymarshall/8114674 to your computer and use it in GitHub Desktop.
{% set items = craft.entries.find({ section: section, limit: 5, order: 'postDate asc' }) %}
{% if items | length %}
<ul>
{% for entry in items %}
<li>
<a href="{{ entry.url }}">{{ entry.title }}</a>
</li>
{% endfor %}
</ul>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment