diff options
Diffstat (limited to 'mod/web/blog/templates/post.html')
| -rw-r--r-- | mod/web/blog/templates/post.html | 4 |
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 %} |
