summaryrefslogtreecommitdiffstats
path: root/templates/page.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/page.html')
-rw-r--r--templates/page.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/page.html b/templates/page.html
index 350652a..3920e5e 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -2,8 +2,10 @@
{% extends "index.html" %}
{% block content %}
<header>
- <h1>{{ page.title | safe }}</h1>
- <h3>{{ page.description | default(value="") | markdown(inline=true) | safe }}</h3>
+ <hgroup>
+ <h1>{{ page.title | safe }}</h1>
+ <p>{{ page.description | default(value="") | markdown(inline=true) | safe }}</p>
+ </hgroup>
</header>
{{ page.content | safe }}
{% endblock content %}