SiteWebAstrolabe/src/_includes/partials/components/post-list.njk
2020-06-19 23:47:44 +02:00

22 lines
905 B
Plaintext

{% if postListItems.length %}
<section class="[ post-list ] [ pad-top-700 gap-bottom-900 ]">
<div class="[ inner-wrapper ] [ sf-flow ]">
<h2 class="[ post-list__heading ]">{{ postListHeading }}</h2>
<ol class="[ post-list__items ] [ sf-flow ] [ pad-top-300 ]" reversed>
{% for item in postListItems %}
{% if item.date.getTime() <= global.now %}
<li class="post-list__item">
<h3 class="font-base leading-tight text-600 weight-mid">
<a href="{{ item.url }}" class="post-list__link" rel="bookmark">{{ item.data.title }}</a>
</h3>
<p class="text-500 gap-top-300 weight-mid">
<time datetime="{{ item.date | w3DateFilter }}">{{ item.date | dateFilter }}</time>
</p>
</li>
{% endif %}
{% endfor %}
</ol>
</div>
</section>
{% endif %}