]> git.p6c8.net - pcdenotes.git/blobdiff - notes/templates/note_base.html
Changed <div id="content"> to <main>
[pcdenotes.git] / notes / templates / note_base.html
index ca4eaaf7935052e11dba2fe8e7c02a7ee92c2b2c..0e779e6821424cbee5c677f1104f072b1167c27e 100644 (file)
@@ -1,4 +1,4 @@
-{% load markdownify %}
+{% load static %}
 <!DOCTYPE html>
 
 <html lang="en">
@@ -6,17 +6,36 @@
   <title>{% block title %}{% endblock %}</title>
   <meta charset="UTF-8" />
   <meta name="viewport" content="width=device-width, initial-scale=1.0" />
+  <link href="{% static "notes/style.css" %}" rel="stylesheet">
   <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">
-    <h1><a href="/" class="link-light">Notes</a></h1>
-  </div>
+  <header class="container-fluid p-5">
+    <h1><a href="{% url "notes:note_list" %}">Notes</a></h1>
+  </header>
 
-  <div id="content" class="container mt-5">
+  <main class="container flex-fill">
     {% block content %}{% endblock %}
-  </div>
+  </main>
+
+  <footer class="container-fluid p-5 mt-5">
+    <div class="row">
+      <div id="footer-left" class="col-lg-4 col-md-12 col-sm-12">
+        <p>
+          <a href="{% url "notes:note_list" %}">Home</a><br>
+          <a href="{% url "notes:archive_main" %}">Archive</a>
+        </p>
+      </div>
+      <div id="footer-right" class="col-lg-4 offset-lg-4 col-md-12 col-sm-12">
+        This site contains random notes and thoughts by Patrick Canterino.<br>
+        If you have any questions, you may write me an email: <a href="mailto:patrick@patrick-canterino.de">patrick@patrick-canterino.de</a>
+      </div>
+    </div>
+    <div id="copyright">
+      © 2022 <a href="https://www.patrick-canterino.de/">Patrick Canterino</a>
+    </div>
+  </footer>
 </body>
 </html>
\ No newline at end of file

patrick-canterino.de