aboutsummaryrefslogtreecommitdiff
path: root/theme/templates/page.html
diff options
context:
space:
mode:
authorChristian Cleberg <[email protected]>2026-03-11 00:06:53 -0500
committerChristian Cleberg <[email protected]>2026-03-11 00:06:53 -0500
commita3fc6277345ab1890992dfb1ba05cc513a38a2f6 (patch)
tree1b607ff2e67e2de65c335896de9dfeca3b38fdd3 /theme/templates/page.html
parentcd0f20fa2de296b4da6308b4049f858c872d1b83 (diff)
downloadcleberg.net-a3fc6277345ab1890992dfb1ba05cc513a38a2f6.tar.gz
cleberg.net-a3fc6277345ab1890992dfb1ba05cc513a38a2f6.tar.bz2
cleberg.net-a3fc6277345ab1890992dfb1ba05cc513a38a2f6.zip
Update blog, post, and page templates
Diffstat (limited to 'theme/templates/page.html')
-rw-r--r--theme/templates/page.html9
1 files changed, 3 insertions, 6 deletions
diff --git a/theme/templates/page.html b/theme/templates/page.html
index b670771..a302c4b 100644
--- a/theme/templates/page.html
+++ b/theme/templates/page.html
@@ -1,11 +1,8 @@
{% extends "base.html" %}
-
-{% block subtitle %}
- {{ post.title }} -
-{% endblock %}
+{% block subtitle %}{{ post.title }} - {% endblock %}
{% block main %}
<article>
- <h1 data-text="{{ post.title }}">{{ post.title }}</h1>
- <section>{{ post.html | safe }}</section>
+ <h1>{{ post.title }}</h1>
+ <div class="page-body">{{ post.html | safe }}</div>
</article>
{% endblock %}