lewisdale.dev/src/blog/tag.html

28 lines
794 B
HTML
Raw Normal View History

2023-10-18 12:35:02 +00:00
---
title: Blog
layout: base.njk
pagination:
2023-12-30 15:38:09 +00:00
data: collections.tags
2023-10-18 12:35:02 +00:00
size: 1
alias: tag
eleventyComputed:
2023-12-30 15:38:09 +00:00
permalink: "/post/tag/{{ tag }}/"
feed: "/post/tag/{{ tag }}/feed/"
2023-10-18 12:35:02 +00:00
---
<main class="wrapper-md stack-lg">
2023-12-30 15:38:09 +00:00
<h1>Posts tagged “{{ tag }}”</h1>
2023-10-18 12:35:02 +00:00
<ol class="stack-xl" role='list'>
2023-12-30 16:06:29 +00:00
{% set posts = collections.posts | filterBy(tag) | reverse %}
2023-12-30 15:38:09 +00:00
{% for item in posts %}
2023-10-18 12:35:02 +00:00
<li class="stack-xs">
2023-12-30 15:38:09 +00:00
<h2><a href="{{ item.url }}">{{ item.data.title | safe }}</a></h2>
<time datetime="{{ item.date | dateToRfc3339 }}" class="block">{{ item.date | dateDisplay }}</time>
<div class="e-content p-summary">{{ item.content | excerpt }}</div>
<a href="{{ item.url }}" class="inline-block">Read more</a>
2023-10-18 12:35:02 +00:00
</li>
{% endfor %}
</ol>
2023-11-29 08:34:39 +00:00
</main>