Skip to content

Instantly share code, notes, and snippets.

@juque
Created July 25, 2012 02:05
Show Gist options
  • Select an option

  • Save juque/3173937 to your computer and use it in GitHub Desktop.

Select an option

Save juque/3173937 to your computer and use it in GitHub Desktop.
<!-- show latest 5 posts published in blog -->
<div id="latest-news">
<h2>{{ 'titles.latest_news' | t }}</h2>
<ul class="clearfix ticker">
{% for post in blog.posts limit:5 %}
<li>
<h4><a href="{{post.url}}" title="{{post.title}}">{{ post.title }}</a></h4>
</li>
{% endfor %}
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment