SiteWebAstrolabe/src/_includes/partials/components/posts-list.njk
Yves Gatesoupe 297a7bd356 added time for event posts
format publish for posts
2020-07-16 22:28:40 +02:00

20 lines
751 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{% if newsListItems.length %}
<ol class="[ news-list__items ]" reversed>
{% for item in newsListItems %}
{% if item.date.getTime() <= global.now %}
<li class="news-list__item {{ item.data.type }}">
<h3 class="news-list__item-heading">
<a href="{{ item.url | url }}" class="news-list__link" rel="bookmark">{{ item.data.title }}</a>
</h3>
<p class="news-list__item-date">
<time datetime="{{ item.date | w3DateFilter }}">{{ item.date | dateFilter }}</time>
{% if item.data.time %}
<time datetime="{{ item.data.time }}">{{ item.data.time }}</time>
{% endif %}
</p>
</li>
{% endif %}
{% endfor %}
</ol>
{% endif %}