blob: 8c1a6ed4ecdece72fe0c805f9512aeb4a9defc64 (
plain) (
blame)
1
2
3
4
5
6
|
<div> {% for post in collections.blog | reverse %}
<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> {% endfor %}
</div>
|