summaryrefslogtreecommitdiffstats
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html8
1 files changed, 5 insertions, 3 deletions
diff --git a/templates/index.html b/templates/index.html
index 1f2d933..9e61436 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -26,7 +26,7 @@
<body>
<header>
<nav>
- <h1>{{ macros::nav_item(name=config.title, url=config.base_url) }}</h1>
+ <span>{{ macros::nav_item(name=config.title, url=config.base_url) }}</span>
<ul>
<li>{{ macros::nav_item(name="Projects",url=get_url(path="@/projects.md") ) }}</li>
<li>{{ macros::nav_item(name="Posts",url=get_url(path="@/posts/_index.md") ) }}</li>
@@ -37,8 +37,10 @@
<main>
{% block content %}
<header>
- <h1>{{ section.title | safe }}</h1>
- <h3>{{ section.description | default(value="") | markdown(inline=true) | safe }}</h3>
+ <hgroup>
+ <h1>{{ section.title | safe }}</h1>
+ <p>{{ section.description | default(value="") | markdown(inline=true) | safe }}</p>
+ </hgroup>
</header>
{{ section.content | safe }}
{% endblock content %}