diff options
author | cel 🌸 <cel@blos.sm> | 2023-06-23 16:47:07 +0100 |
---|---|---|
committer | cel 🌸 <cel@blos.sm> | 2023-06-23 16:47:07 +0100 |
commit | cbfb8b8886b2bb3ce6bb1c67c00afa12466cab93 (patch) | |
tree | cb27a71aa6be7b878f54922346d7cb653e3f1624 /templates | |
parent | 43c3cec8e765a2c211831da3c5efc6ff7855da1a (diff) | |
download | blossom-cbfb8b8886b2bb3ce6bb1c67c00afa12466cab93.tar.gz blossom-cbfb8b8886b2bb3ce6bb1c67c00afa12466cab93.tar.bz2 blossom-cbfb8b8886b2bb3ce6bb1c67c00afa12466cab93.zip |
finally fix styles for responsiveness (hopefully)
Diffstat (limited to 'templates')
-rw-r--r-- | templates/base.html.tera | 4 | ||||
-rw-r--r-- | templates/contact.html.tera | 8 | ||||
-rw-r--r-- | templates/home.html.tera | 8 |
3 files changed, 10 insertions, 10 deletions
diff --git a/templates/base.html.tera b/templates/base.html.tera index a73fe4a..4f8aa3a 100644 --- a/templates/base.html.tera +++ b/templates/base.html.tera @@ -27,12 +27,8 @@ <div id="page"> - <header> - {% block header %} {% endblock header %} - - </header> <nav class="panel"> <ul id="nav"> diff --git a/templates/contact.html.tera b/templates/contact.html.tera index 5fd37b0..dc78959 100644 --- a/templates/contact.html.tera +++ b/templates/contact.html.tera @@ -4,9 +4,11 @@ {% block header %} -<div class="panel" id="title"> - <h1>cel 🌸</h1> -</div> +<header> + <div class="panel" id="title"> + <h1>cel 🌸</h1> + </div> +</header> {% endblock header %} diff --git a/templates/home.html.tera b/templates/home.html.tera index 1a2a453..483c2f9 100644 --- a/templates/home.html.tera +++ b/templates/home.html.tera @@ -4,9 +4,11 @@ {% block header %} -<div class="panel" id="title"> - <h1>cel 🌸</h1> -</div> +<header> + <div class="panel" id="title"> + <h1>cel 🌸</h1> + </div> +</header> {% if is_live %} <iframe |