website/templates/post.html

13 lines
384 B
HTML
Raw Permalink Normal View History

2024-01-13 12:25:00 +00:00
{% extends "base.html" %}
2023-01-24 17:20:04 +00:00
2024-01-13 12:25:00 +00:00
{% block content %}
2023-07-24 12:39:52 +00:00
<div class="w-full md:max-w-prose mt-2 mx-auto">
<div class="px-8">
2023-01-24 17:20:04 +00:00
<h1 class="text-3xl">{{ page.title }}</h1>
2024-01-13 12:25:00 +00:00
<span>Posted by <span class="italic">{{ page.extra.author }}</span> on {{ page.date }}</span>
2023-07-24 12:39:52 +00:00
<article class="mt-5 prose lg:prose-lg">
2024-01-13 12:25:00 +00:00
{{ page.content | safe }}
2023-01-24 17:20:04 +00:00
</article>
</div>
</div>
2024-01-13 12:25:00 +00:00
{% endblock %}