+ <header class="container-fluid p-5">
+ <h1><a href="{% url "notes:note_list" %}">Notes</a></h1>
+ </header>
+
+ <main class="container flex-fill">
+ {% block content %}{% endblock %}
+ </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>