diff options
| author | foswret <foswret@posteo.com> | 2026-03-22 12:54:35 -0500 |
|---|---|---|
| committer | foswret <foswret@posteo.com> | 2026-03-22 12:54:35 -0500 |
| commit | 73b06c31b505d1a0f2e4035c7daab0df49a25d3b (patch) | |
| tree | 778e996fcf635de175ae03d91e8353db5a364e29 /templates/base.html | |
| parent | d300415652d513a54c214c894e996036d2c999ce (diff) | |
implement basic nav bar
Diffstat (limited to 'templates/base.html')
| -rw-r--r-- | templates/base.html | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/templates/base.html b/templates/base.html index aba4506..752d091 100644 --- a/templates/base.html +++ b/templates/base.html @@ -2,15 +2,18 @@ <html lang="en"> <head> - <meta charset="utf-8"> + <meta charset="utf-8" name="viewport" + content="width=device-width, initial-scale=1, maximum-scale=1"> + <link rel="stylesheet" href="{{ get_url(path='style.css', cachebust=true) }}"> <title>CHANGE ME</title> </head> +{% include "partials/header.html" %} +{% include "partials/nav.html" %} + <body> <section class="section"> - <div class="container"> - {% block content %} {% endblock content %} - </div> + {% block content %} {% endblock content %} </section> </body> |
