summaryrefslogtreecommitdiff
path: root/mod/web/blog/templates/post.html
diff options
context:
space:
mode:
authorKleidi Bujari <mail@4kb.net>2024-12-18 20:17:41 -0500
committerKleidi Bujari <mail@4kb.net>2024-12-18 20:20:52 -0500
commitb847b87823dfd7e1b7870c67ea32199bc607f852 (patch)
tree54a2923544e0bb765a3218e8c40c793f952ca421 /mod/web/blog/templates/post.html
parenteb13a9a552f9e50a66faba985521ba8e3483c447 (diff)
downloaddepot-b847b87823dfd7e1b7870c67ea32199bc607f852.tar.gz
depot-b847b87823dfd7e1b7870c67ea32199bc607f852.tar.bz2
depot-b847b87823dfd7e1b7870c67ea32199bc607f852.zip
Enable github actions
Moved personal blog to be built in this tree. Also enables github actions to host the site on pages.
Diffstat (limited to 'mod/web/blog/templates/post.html')
-rw-r--r--mod/web/blog/templates/post.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/mod/web/blog/templates/post.html b/mod/web/blog/templates/post.html
index b1981e4..b819520 100644
--- a/mod/web/blog/templates/post.html
+++ b/mod/web/blog/templates/post.html
@@ -1,12 +1,14 @@
{% extends "base.html" %}
+
{% block title%}
{{ page.title }} - {{ super() }}
{% endblock title %}
{% block content %}
-<h1 style="text-align: center; margin-top: 1em;">{{ page.title }}</h1>
+<h1 style="text-align: center">{{ page.title }}</h1>
<article>
{{ page.content | safe }}
</article>
+
{% endblock content %}