This repository has been archived on 2024-02-04. You can view files and clone it, but cannot push or open issues or pull requests.
blog.polynom.me/layout/post.html

20 lines
709 B
HTML
Raw Permalink Normal View History

<!-- Container for posts -->
<div class="mx-auto mt-4 w-full md:max-w-prose">
<h1 class="text-indigo-400 text-3xl">{{ title }}</h1>
2020-09-21 15:49:58 +00:00
<span class="text-md mt-2">Posted on {{ date }}</span>
<!-- Actual article -->
<article class="prose lg:prose-lg text-white mt-4">
{{ content }}
</article>
<!-- Common post footer -->
<div class="mt-6">
<span class="prose lg:prose-lg text-md text-white">
If you have any questions or comments, then feel free to send me an email (Preferably with GPG encryption)
to {{ email_user }} [at] {{ email_domain }} or reach out to me on the Fediverse at <a href="https://{{ fediverse_url }}">{{ fediverse_handle }}</a>.
2023-07-16 20:51:58 +00:00
</span>
</div>
</div>