start of eleventy-base-blog that pairs with 0.2.8
This commit is contained in:
9
_includes/postslist.njk
Normal file
9
_includes/postslist.njk
Normal file
@ -0,0 +1,9 @@
|
||||
<ol class="postlist" style="counter-reset: start-from {{ postslist.length + 1 }}">
|
||||
{% for post in postslist | reverse %}
|
||||
<li class="postlist-item{% if post.url == url %} postlist-item-active{% endif %}">
|
||||
<a href="{{ post.url | url }}" class="postlist-link">{{ post.data.title }}</a>
|
||||
<span class="postlist-date">{{ post.date | readableDate }}</span>
|
||||
{% for tag in post.data.tags %}{% if tag != "post" %}<span class="tag">{{ tag }}</span>{% endif %}{% endfor %}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ol>
|
Reference in New Issue
Block a user