diff options
| -rw-r--r-- | templates/base.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index b08a9f9..ba1eec9 100644 --- a/templates/base.html +++ b/templates/base.html @@ -2,7 +2,11 @@ <html lang="en"> <head> <link rel="icon" href="/favicon.svg" /> - <title>Boutalas</title> + {% if section.title %} + <title>{{ section.title }}</title> + {% endif %} {% if page.title %} + <title>{{ page.title }}</title> + {% endif %} </head> <body> |
