agnes-love/_includes/layouts/poem.njk
2026-06-25 00:57:39 +00:00

27 lines
1,004 B
Text
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
layout: layouts/base.njk
---
<a href="/poetry/" class="inline-flex items-center text-blue-600 hover:text-blue-800 mb-3">← Back to Poetry</a>
<nav class="text-sm text-gray-600 mb-4" aria-label="Breadcrumb">
<ol class="flex space-x-2">
<li><a href="/" class="hover:text-blue-600">Home</a></li>
<li><span aria-hidden="true"></span></li>
<li><a href="/poetry/" class="hover:text-blue-600">Poetry</a></li>
<li><span aria-hidden="true"></span></li>
<li class="text-gray-900 dark:text-gray-100">{{ title }}</li>
</ol>
</nav>
<article class="h-entry">
<header class="mb-4">
<h1 class="p-name text-2xl font-bold mb-2">{{ title }}</h1>
<div class="text-sm text-gray-600 dark:text-gray-400">
<time class="dt-published" datetime="{{ page.date }}">{{ page.date | readableDate }}</time>
<a class="u-url hidden" href="{{ page.url }}">Permalink</a>
</div>
</header>
<div class="e-content prose max-w-none">
{{ content | safe }}
</div>
</article>