wonderfulfrog.com/src/_includes/macros/posts.njk
2024-02-23 12:25:38 -08:00

14 lines
549 B
Text

{% macro list(posts) %}
<ul class="[ flow list-none m-0 p-0 flow-space-0.5 ]">
{% for post in posts %}
<li class="[ flex flex-wrap column-gap-1 row-gap-0 ]">
<div>
<a href="{{ post.url }}">{{ post.data.title }}</a>
</div>
<div class="[ text-fadeText font-size-s ]">{{ post.data.excerpt }}</div>
<div class="[ bg-surface radius-0.5 px-0.5 text-primary font-size-s ]">{{ post.data.date | formatDate("MM/DD/YYYY") }}</div>
</li>
{% endfor %}
</ul>
{% endmacro %}