]> git.p6c8.net - pcdenotes.git/blob - notes/templates/note_base.html
Removed now unnecessary slash
[pcdenotes.git] / notes / templates / note_base.html
1 {% load static %}
2 <!DOCTYPE html>
3
4 <html lang="en">
5 <head>
6 <title>{% block title %}{% endblock %}</title>
7 <meta charset="UTF-8" />
8 <meta name="viewport" content="width=device-width, initial-scale=1.0" />
9 <link href="{% static "notes/style.css" %}" rel="stylesheet">
10 <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
11 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
12 </head>
13 <body class="d-flex flex-column min-vh-100">
14
15 <header class="container-fluid p-5">
16 <h1><a href="{% url "notes:note_list" %}">Notes</a></h1>
17 </header>
18
19 <main class="container flex-fill">
20 {% block content %}{% endblock %}
21 </main>
22
23 <footer class="container-fluid p-5 mt-5">
24 <div class="row">
25 <div id="footer-left" class="col-lg-4 col-md-12 col-sm-12">
26 <p>
27 <a href="{% url "notes:note_list" %}">Home</a><br>
28 <a href="{% url "notes:archive_main" %}">Archive</a>
29 </p>
30 </div>
31 <div id="footer-right" class="col-lg-4 offset-lg-4 col-md-12 col-sm-12">
32 This site contains random notes and thoughts by Patrick Canterino.<br>
33 If you have any questions, you may write me an email: <a href="mailto:patrick@patrick-canterino.de">patrick@patrick-canterino.de</a>
34 </div>
35 </div>
36 <div id="copyright">
37 © 2022 <a href="https://www.patrick-canterino.de/">Patrick Canterino</a>
38 </div>
39 </footer>
40 </body>
41 </html>

patrick-canterino.de