diff options
author | Rasmus Luha <rasmus.luha@gmail.com> | 2022-09-17 19:11:03 +0300 |
---|---|---|
committer | Rasmus Luha <rasmus.luha@gmail.com> | 2022-09-17 19:11:03 +0300 |
commit | 40f114fe03cffaea257dc1f7611a95bda15bd228 (patch) | |
tree | 9c838eccc350041651a648e91bb13fd87c1d7ae8 /templates/base.html | |
parent | a2dc5f37b280c9f7f304888446fef0cf975ae041 (diff) |
New fonts and minor css
Diffstat (limited to 'templates/base.html')
-rw-r--r-- | templates/base.html | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/templates/base.html b/templates/base.html index 9b997b6..c3864e3 100644 --- a/templates/base.html +++ b/templates/base.html @@ -1,8 +1,8 @@ <!DOCTYPE html> <html lang="en"> - <head> <meta charset="utf-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> {% if page.title%} <title>{{ page.title }}</title> {% else %} @@ -12,8 +12,8 @@ </head> <body> - <div class="main-image"> - <div class="img-container"> + <div class="headerImage"> + <div class="imgContainer"> <h1><span>Luhamus</span></h1> </div> </div> @@ -24,16 +24,14 @@ <a href="">Git</a> <a href="contact">Contact</a> </nav> - <hr/> - <section class="section"> - <div class="container"> + <section class="main"> {% block content %} {% endblock %} - </div> </section> + <hr/> <footer>© Here is the very important Footer 2022</footer> -</body> +</body> </html> |