diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-06-03 23:56:17 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-06-03 23:56:17 +0300 |
commit | 1ca5ffca2b402f59ace003f9c1eee79e3b9a677c (patch) | |
tree | a79ba6b3ebec61421a41410b20e7a52fc45d4ba6 /templates/base.html | |
parent | 93e66d4088b348899715e1f1a891c8a6092f4116 (diff) | |
download | yaroslavps.com-1ca5ffca2b402f59ace003f9c1eee79e3b9a677c.tar.gz yaroslavps.com-1ca5ffca2b402f59ace003f9c1eee79e3b9a677c.zip |
new recipes section, first recipe
Diffstat (limited to 'templates/base.html')
-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 cb9fcb7..ccb167a 100644 --- a/templates/base.html +++ b/templates/base.html @@ -3,7 +3,11 @@ <head> <meta charset="utf-8"> <meta content="width=device-width, initial-scale=1" name="viewport"> - <title>{{ config.title }}</title> + <title> + {% block title %} + {{ config.title }} + {% endblock %} + </title> <link rel="stylesheet" href="{{ get_url(path="css/yaroslavps.css") }}"> <link rel="icon" type="image/png" href="{{ get_url(path="favicon32x32.png") }}"> <link rel="icon" type="image/png" href="{{ get_url(path="favicon64x64.png") }}"> |