]> git.p6c8.net - pcdenotes.git/blob - notes/templates/note_base.html
Updated dependencies
[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.2.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-iYQeCzEYFbKjA/T2uDLTpkwGzCiq6soy8tYaI1GyVh/UjpbCx/TYkiZhlZB6+fzT" crossorigin="anonymous">
11 </head>
12 <body class="d-flex flex-column min-vh-100">
13
14 <header class="container-fluid p-5">
15 <h1><a href="{% url "notes:note_list" %}">Notes</a></h1>
16 </header>
17
18 <main class="container flex-fill">
19 {% block content %}{% endblock %}
20 </main>
21
22 <footer class="container-fluid pt-5 pb-5 ps-md-5 pe-md-5 mt-5">
23 <div class="row">
24 <div id="footer-left" class="col-lg-4 col-md-12 col-sm-12">
25 <a href="http://www.djangoproject.com/"><img src="https://www.djangoproject.com/m/img/badges/djangopowered126x54.gif" width="126" height="54" alt="Powered by Django." title="Powered by Django." /></a>
26 </div>
27 <div id="footer-middle" class="col-lg-4 col-md-12 col-sm-12">
28 <ul>
29 <li><a href="{% url "notes:note_list" %}">Home</a></li>
30 <li><a href="{% url "notes:archive_main" %}">Archive</a></li>
31 </ul>
32 </div>
33 <div id="footer-right" class="col-lg-4 col-md-12 col-sm-12">
34 This site contains random notes and thoughts by Patrick Canterino.<br>
35 If you have any questions, you may write me an email: <a href="mailto:patrick@patrick-canterino.de">patrick@patrick-canterino.de</a>
36 </div>
37 </div>
38 <div id="copyright">
39 {% with year_start="2022" %}
40 {% now "Y" as year_current %}
41 © {% if year_current > year_start %}{{ year_start }}-{% endif %}{{ year_current }} <a href="https://www.patrick-canterino.de/">Patrick Canterino</a> | Content is licensed under <a href="https://creativecommons.org/licenses/by/4.0/deed.en">CC BY 4.0</a>
42 {% endwith %}
43 </div>
44 <div id="footer-note">
45 Powered by <a href="https://github.com/pcanterino/pcdenotes">PCDENotes</a>
46 </div>
47 </footer>
48 <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.1/dist/js/bootstrap.bundle.min.js" integrity="sha384-u1OknCvxWvY5kfmNBILK2hRnQC3Pr17a+RTT6rIHI7NnikvbZlHgTPOOmMi466C8" crossorigin="anonymous"></script>
49 </body>
50 </html>

patrick-canterino.de