diff options
Diffstat (limited to '')
| -rw-r--r-- | templates/base.html | 12 | 
1 files changed, 11 insertions, 1 deletions
| diff --git a/templates/base.html b/templates/base.html index 0451020..2586041 100644 --- a/templates/base.html +++ b/templates/base.html @@ -10,6 +10,16 @@      <link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap" rel="stylesheet">    </head>    <body class="bg-zinc-900 text-pink-300 font-[Pixelify_Sans] selection:text-pink-900 selection:bg-pink-100 lg:text-xl"> -    {{ body }} +    <div class="min-h-screen flex flex-col"> + +      {{ include "navbar.html" }} + +      <div class="flex flex-grow flex-col"> +        {{ body }} +      </div> + +      {{ include "footer.html" }} + +    </div>    </body>  </html> | 
