14 lines
581 B
Text
14 lines
581 B
Text
{% macro list(posts) %}
|
|
<ul class="[ posts-list ] [ flow list-none m-0 p-0 flow-space-0.5 ]">
|
|
{% for post in posts %}
|
|
<li class="[ posts-list-item line-height-l ]">
|
|
<div>
|
|
<a href="{{ post.url }}">{{ post.data.title }}</a>
|
|
<div class="[ text-fadeText font-size-s line-height-m ]">{{ post.data.excerpt }}</div>
|
|
</div>
|
|
<div class="[ text-fadeText line-height-m flex items-center ]">{{ post.data.date | formatDate("MM/DD") }}</div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endmacro %}
|
|
|