X-Git-Url: https://git.p6c8.net/pcdenotes.git/blobdiff_plain/c4a0e43c808c2fa800f494f2243a6304ab8e0c4b..938098389e8f0871a23d193a710c332ea3344eec:/notes/templates/note_base.html diff --git a/notes/templates/note_base.html b/notes/templates/note_base.html index c792a72..972e204 100644 --- a/notes/templates/note_base.html +++ b/notes/templates/note_base.html @@ -16,25 +16,34 @@ <h1><a href="{% url "notes:note_list" %}">Notes</a></h1> </header> - <div id="content" class="container flex-fill"> + <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"> + <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> + </div> + <div id="footer-middle" 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"> + <div id="footer-right" class="col-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> + {% with year_start="2022" %} + {% now "Y" as year_current %} + © {% 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> + {% endwith %} + </div> + <div id="footer-note"> + Powered by <a href="https://github.com/pcanterino/pcdenotes">PCDENotes</a> </div> </footer> </body>