diff options
| author | Christian Cleberg <[email protected]> | 2026-03-11 00:06:53 -0500 |
|---|---|---|
| committer | Christian Cleberg <[email protected]> | 2026-03-11 00:06:53 -0500 |
| commit | a3fc6277345ab1890992dfb1ba05cc513a38a2f6 (patch) | |
| tree | 1b607ff2e67e2de65c335896de9dfeca3b38fdd3 /theme/templates/page.html | |
| parent | cd0f20fa2de296b4da6308b4049f858c872d1b83 (diff) | |
| download | cleberg.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.html | 9 |
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 %} |
