lewisdale.dev/src/blog/tag.html

25 lines
645 B
HTML
Raw Normal View History

2023-10-18 12:35:02 +00:00
---
title: Blog
layout: base.njk
pagination:
data: tags
size: 1
alias: tag
eleventyComputed:
permalink: "/post/tag/{{ tag.slug }}/"
---
<main class="wrapper-md stack-lg">
<h1>Posts tagged “{{ tag.name }}”</h1>
<ol class="stack-xl" role='list'>
{% for item in tag.posts %}
<li class="stack-xs">
<h2><a href="/post/{{ item.slug }}">{{ item.title.rendered | safe }}</a></h2>
<time class="block">{{ item.date | parseDate | dateDisplay }}</time>
{{ item.excerpt.rendered | safe }}
<a href="/post/{{ item.slug }}" class="inline-block">Read more</a>
</li>
{% endfor %}
</ol>
</main>