18 lines
433 B
Plaintext
18 lines
433 B
Plaintext
<ol id="postlist">
|
|
{% for post in postlist %}
|
|
<li class="post">
|
|
<a class="postlink" href="{{ post.url }}">
|
|
{% if post.data.image %}
|
|
<img src="/img/{{ post.data.image.src }}" alt="{{ post.data.image.alt }}">
|
|
{% endif %}
|
|
<h2>{{ post.data.title }}</h2>
|
|
<ul class="postlist-tags">
|
|
{% for tag in post.data.tags | removeBasicTags %}
|
|
<li>{{ tag }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ol>
|