diff options
| author | foswret | 2026-08-14 12:21:57 -0500 |
|---|---|---|
| committer | foswret | 2026-08-14 12:21:57 -0500 |
| commit | 2726baea2ec971bb4ee15291a0e031c7ddaa64b9 (patch) | |
| tree | bb1160fd718a3fa420f5f6244a978855e2451d16 /templates/post-page.html | |
| parent | 76b00b6fdde212d93864e87de2c3759c28844ee5 (diff) | |
Update to Zola 0.23
Can not use {{ page.title }} in base.html for <title> definition, so
moved to more specific template files.
Fix typo in style.css for <pre>, where text was black-on-black.
Diffstat (limited to 'templates/post-page.html')
| -rw-r--r-- | templates/post-page.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/templates/post-page.html b/templates/post-page.html index bfb891c..f960398 100644 --- a/templates/post-page.html +++ b/templates/post-page.html @@ -1,5 +1,9 @@ {% extends "base.html" %} +{% block title -%} +{{ page.title }} | {{ config.title }} +{%- endblock title %} + {% block content %} <h1 class="title"> |
