From 44db1be546887b375db3543c6fe059fdaaa1a06d Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Thu, 4 Jun 2020 01:20:40 +0300 Subject: template fixes --- templates/archive.html | 5 ++++- templates/page.html | 9 +++++++++ templates/weblog.html | 1 + 3 files changed, 14 insertions(+), 1 deletion(-) diff --git a/templates/archive.html b/templates/archive.html index a605b40..b06bdb2 100644 --- a/templates/archive.html +++ b/templates/archive.html @@ -1,6 +1,9 @@ {% extends "base.html" %} +{% block title %} +Weblog archive - Yaroslav's weblog +{% endblock %} {% block header %} -

Yaroslav's weblog archive

+

Yaroslav's weblog archive

{% endblock %} {% block content %} {% set section = get_section(path="weblog/_index.md") %} diff --git a/templates/page.html b/templates/page.html index 36e34b8..699bd96 100644 --- a/templates/page.html +++ b/templates/page.html @@ -1,4 +1,13 @@ {% extends "base.html" %} +{% block title %} +{% if page.permalink is containing("weblog") %} +{{ page.title }} - Yaroslav's weblog +{% elif page.permalink is containing("food") %} +{{ page.title }} - Yaroslav's recipe book +{% else %} +{{ page.title }} - Yaroslav's website +{% endif %} +{% endblock %} {% block header %}

{{ page.title }}

Published {{ page.date | date(format="%b %d, %Y diff --git a/templates/weblog.html b/templates/weblog.html index 8bace98..d3d6407 100644 --- a/templates/weblog.html +++ b/templates/weblog.html @@ -5,6 +5,7 @@ A weblog by Yaroslav de la Peña Smirnov {% elif section.permalink is containing("food") %} A collection of recipes by Yaroslav de la Peña Smirnov {% else %} +A website by Yaroslav de la Peña Smirnov {% endif %} {% endblock %} {% block header %} -- cgit v1.2.3