diff options
author | Wolfgang Müller | 2024-10-05 13:45:39 +0200 |
---|---|---|
committer | Wolfgang Müller | 2024-10-05 15:23:29 +0200 |
commit | d5f1fc9264fdd35e521bdff0a5e1bbb9bf8722a6 (patch) | |
tree | 464bc2e8e57176438fc964022b1ba0936dc31556 /templates/base.html | |
parent | b0f438f295483207e253e14c5b4856999d354e3d (diff) | |
download | zunzuncito-d5f1fc9264fdd35e521bdff0a5e1bbb9bf8722a6.tar.gz |
templates: Show page title before config.title
The page title is way more important than the title of the microblog, so
make sure it gets prominent treatment.
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/base.html b/templates/base.html index ea70a47..ac19b26 100644 --- a/templates/base.html +++ b/templates/base.html @@ -16,7 +16,7 @@ <html lang="en"> <head> <title> - {{ config.title ~ " · " ~ title }} + {{ title ~ " · " ~ config.title }} </title> <link rel="stylesheet" href="/style.css"/> <link rel="icon" href="/icon.svg"/> |