diff options
Diffstat (limited to 'templates/entry.html')
-rw-r--r-- | templates/entry.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/entry.html b/templates/entry.html index cdd759f..13e2bb5 100644 --- a/templates/entry.html +++ b/templates/entry.html @@ -1,4 +1,7 @@ {% extends 'layout.html' %} +{% block head %} +<title>{{ entry['title'] }}</title> +{% endblock %} {% block content %} <article itemscope itemtype="http://schema.org/Article"> @@ -30,7 +33,7 @@ {% elif newer %} <a href="{{ newer[0]['file'] }}.html">Newer ({{ newer[0]['title'] }})</a> {% endif %} -</nav> </div> +</nav> {% endif %} {% endblock %} |