feat: Somewhat convert to Zola

This commit is contained in:
2024-01-13 13:25:00 +01:00
parent 26b3856adb
commit 719501edaf
32 changed files with 2082 additions and 273 deletions

13
templates/post.html Normal file
View File

@@ -0,0 +1,13 @@
{% extends "base.html" %}
{% block content %}
<div class="w-full md:max-w-prose mt-2 mx-auto">
<div class="px-8">
<h1 class="text-3xl">{{ page.title }}</h1>
<span>Posted by <span class="italic">{{ page.extra.author }}</span> on {{ page.date }}</span>
<article class="mt-5 prose lg:prose-lg">
{{ page.content | safe }}
</article>
</div>
</div>
{% endblock %}