Created
July 25, 2012 02:05
-
-
Save juque/3173937 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| <!-- 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