blob: 9345954d6e1bbfedcecac56180981c4f55aaf73b (
plain) (
blame)
1
2
3
4
5
6
|
<div> {% for post in collections.blog | reverse %} {% if not limit or loop.index <= limit %}
<a href="{{ post.url }}" class="blogpost">
<h3>{{ post.data.title }}</h3>
<small>{{ post.date | date }}<span style="float:right;">{{ post.data.keywords }} | {{ post.url }}</span></small>
</a><br> {% endif %} {% endfor %}
</div>
|