diff options
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 %} |
