2026-02-17 17:53:00 +01:00
|
|
|
{{!< default}}
|
|
|
|
|
|
2026-02-17 19:43:27 +01:00
|
|
|
{{#post}}
|
2026-02-17 17:53:00 +01:00
|
|
|
<article class="container mx-auto px-4 py-12">
|
|
|
|
|
<header class="text-center mb-8">
|
2026-02-17 19:36:46 +01:00
|
|
|
<h1 class="text-6xl font-bold tracking-tight text-[var(--text-primary)] mb-4">{{title fallback="No Title Provided"}}</h1>
|
2026-02-17 18:54:09 +01:00
|
|
|
<section class="post-meta text-[var(--text-secondary)] text-lg">
|
2026-02-17 17:53:00 +01:00
|
|
|
<time datetime="{{date format="YYYY-MM-DD"}}">{{date format="MMMM DD, YYYY"}}</time>
|
|
|
|
|
{{#if primary_tag}}
|
|
|
|
|
<span class="mx-2">•</span>
|
2026-02-17 18:54:09 +01:00
|
|
|
<a href="{{primary_tag.url}}" class="text-[var(--text-secondary)] hover:text-[var(--text-primary)] transition duration-200">{{primary_tag.name}}</a>
|
2026-02-17 17:53:00 +01:00
|
|
|
{{/if}}
|
|
|
|
|
</section>
|
|
|
|
|
</header>
|
|
|
|
|
|
|
|
|
|
{{#if feature_image}}
|
|
|
|
|
<figure class="mb-12 rounded-lg overflow-hidden shadow-xl">
|
|
|
|
|
<img
|
|
|
|
|
class="w-full h-auto object-cover"
|
|
|
|
|
src="{{img_url feature_image size="xl"}}"
|
|
|
|
|
srcset="{{img_url feature_image size="l"}} 1000w,
|
|
|
|
|
{{img_url feature_image size="xl"}} 2000w"
|
|
|
|
|
sizes="(max-width: 1000px) 1000px, 2000px"
|
2026-02-17 19:36:46 +01:00
|
|
|
alt="{{title fallback="No Title"}}"
|
2026-02-17 17:53:00 +01:00
|
|
|
>
|
|
|
|
|
</figure>
|
|
|
|
|
{{/if}}
|
|
|
|
|
|
2026-02-17 19:43:27 +01:00
|
|
|
<section class="post-content max-w-3xl mx-auto text-[var(--text-primary)] leading-relaxed text-lg prose prose-invert">
|
2026-02-17 19:36:46 +01:00
|
|
|
{{content fallback="<p>No content provided for this post.</p>"}}
|
2026-02-17 17:53:00 +01:00
|
|
|
</section>
|
|
|
|
|
|
2026-02-17 18:54:09 +01:00
|
|
|
<footer class="mt-12 pt-8 border-t border-[var(--bg-tertiary)] text-center">
|
|
|
|
|
<a href="/" class="inline-flex items-center px-6 py-3 border border-transparent text-base font-medium rounded-md shadow-sm text-[var(--text-primary)] bg-[var(--brand-primary)] hover:bg-[var(--brand-secondary)] focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-[var(--brand-primary)] transition duration-200">
|
2026-02-17 17:53:00 +01:00
|
|
|
← Back to Home
|
|
|
|
|
</a>
|
|
|
|
|
</footer>
|
|
|
|
|
</article>
|
2026-02-17 19:43:27 +01:00
|
|
|
{{/post}}
|