truckin along, we got a postlist now
This commit is contained in:
@ -1,12 +1,12 @@
|
||||
<ol>
|
||||
<ol id="postlist">
|
||||
{% for post in postlist %}
|
||||
<li>
|
||||
<a href="{{ post.url }}">
|
||||
<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>
|
||||
<ul class="posttags">
|
||||
{% for tag in post.data.tags | removeBasicTags %}
|
||||
<li>{{ tag }}</li>
|
||||
{% endfor %}
|
||||
|
||||
Reference in New Issue
Block a user