]> git.p6c8.net - pcdenotes.git/blobdiff - notes/templates/note_base.html
Flipped title of detail view
[pcdenotes.git] / notes / templates / note_base.html
index 93f3dc7a36999ae9d3b83868cfbf20edd79aba82..dcb8ec3f243f12cab3362c59e2cf5c7c2b0a1f2d 100644 (file)
@@ -1,4 +1,3 @@
-{% load markdownify %}
 <!DOCTYPE html>
 
 <html lang="en">
 <!DOCTYPE html>
 
 <html lang="en">
@@ -6,9 +5,23 @@
   <title>{% block title %}{% endblock %}</title>
   <meta charset="UTF-8" />
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
   <title>{% block title %}{% endblock %}</title>
   <meta charset="UTF-8" />
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+  <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>
 </head>
-<body>
+<body class="d-flex flex-column min-vh-100">
 
 
-{% block content %}{% endblock %}
+  <header class="container-fluid p-5 bg-primary text-white text-center">
+    <h1><a href="/" class="link-light">Notes</a></h1>
+  </header>
+
+  <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
 </body>
 </html>
\ No newline at end of file

patrick-canterino.de