X-Git-Url: https://git.p6c8.net/pcdenotes.git/blobdiff_plain/ae03458e871011aea691e3d67b577f60362f481d..7d6e91da541577a36e93b20a6c0bd503069440aa:/notes/templates/note_base.html diff --git a/notes/templates/note_base.html b/notes/templates/note_base.html index ca4eaaf..dcb8ec3 100644 --- a/notes/templates/note_base.html +++ b/notes/templates/note_base.html @@ -1,4 +1,3 @@ -{% load markdownify %} <!DOCTYPE html> <html lang="en"> @@ -9,14 +8,20 @@ <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script> </head> -<body> +<body class="d-flex flex-column min-vh-100"> - <div class="container-fluid p-5 bg-primary text-white text-center"> + <header class="container-fluid p-5 bg-primary text-white text-center"> <h1><a href="/" class="link-light">Notes</a></h1> - </div> + </header> - <div id="content" class="container mt-5"> + <div id="content" class="container flex-fill"> {% block content %}{% endblock %} </div> + + <footer class="container-fluid p-5 bg-dark text-white text-center mt-5"> + <div> + © 2022 <a href="https://www.patrick-canterino.de/" class="link-light">Patrick Canterino</a> + </div> + </footer> </body> </html> \ No newline at end of file