This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/posts.html
2024-04-29 20:19:03 -07:00

28 lines
No EOL
836 B
HTML

---
title: All posts
layout: default
pagination:
data: collections.posts
size: 8
reverse: true
alias: posts
---
<div class="posts-wrapper">
{% for post in pagination.items %}
<article class="h-entry">
<div class="flex-centered gap-xs icon-small icon-light">
{% tablericon "calendar-month" "Date" %}
<time class="dt-published" datetime="{{ post.date }}">
{{ post.date | date: "%B %e, %Y" }}
</time>
</div>
<a href="{{ post.url }}">
<h3 class="flex-centered">{{ post.data.title }}</h3>
</a>
<span class="p-author h-card hidden">{{ meta.siteName }}</span>
<div class="p-summary hidden">{{ post.data.post_excerpt }}</div>
{{ post.data.post_excerpt | markdown }}
</article>
{% endfor %}
</div>
{% render "partials/widgets/paginator.liquid", pagination:pagination %}