diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-01-20 14:15:01 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-01-20 14:15:01 +0100 |
commit | 8dd3cba3ee66ccf02a80e2cff40915cd93592457 (patch) | |
tree | 7038685d15e106d153966a1874429b38bf92db6f /templates/base.html | |
parent | 63a2721885f0466038bc1c1614f200eb9b996dae (diff) | |
download | website-8dd3cba3ee66ccf02a80e2cff40915cd93592457.tar.gz |
Add logo to h1
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html index 0795d4a..4dd6431 100644 --- a/templates/base.html +++ b/templates/base.html @@ -9,11 +9,14 @@ </head> <body> <header> + <div> + <img src="/logo.png"> {% if title is defined %} <h1>{{ title }}</h1> {% else %} <h1>rgoncalves.se</h1> {% endif %} + </div> <nav> <a href="/">home</a> |