11ty-resume/src/_includes/partials/post-list.html
2023-08-31 22:26:14 +02:00

9 lines
211 B
HTML

<section class="projects">
<ol reversed class="postlist">
{%- for posts in postslist -%}
<li>
<h2>{{ posts.data.title }}</h2>
</li>
{%- endfor -%}
</ol>
</section>