14 lines
549 B
Text
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 %}
|
|
|