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>
13 <body class=
"d-flex flex-column min-vh-100">
15 <header class=
"container-fluid p-5">
16 <h1><a href=
"{% url "notes:note_list
" %}">Notes
</a></h1>
19 <main class=
"container flex-fill">
20 {% block content %}{% endblock %}
23 <footer class=
"container-fluid p-5 mt-5">
25 <div id=
"footer-left" class=
"col-lg-4 col-md-12 col-sm-12">
26 <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>
28 <div id=
"footer-middle" class=
"col-lg-4 col-md-12 col-sm-12">
30 <a href=
"{% url "notes:note_list
" %}">Home
</a><br>
31 <a href=
"{% url "notes:archive_main
" %}">Archive
</a>
34 <div id=
"footer-right" class=
"col-lg-4 col-md-12 col-sm-12">
35 This site contains random notes and thoughts by Patrick Canterino.
<br>
36 If you have any questions, you may write me an email:
<a href=
"mailto:patrick@patrick-canterino.de">patrick@patrick-canterino.de
</a>
40 {% with
year_start=
"2022" %}
41 {% now
"Y" as year_current %}
42 © {% 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>
45 <div id=
"footer-note">
46 Powered by
<a href=
"https://github.com/pcanterino/pcdenotes">PCDENotes
</a>