X-Git-Url: https://git.p6c8.net/pcdenotes.git/blobdiff_plain/4f1c1d964f6606082652c873ca309e79f1f6dd5e..7e19e83d17bc24e910557b15f80c16d7e8c04102:/notes/templates/note_base.html diff --git a/notes/templates/note_base.html b/notes/templates/note_base.html index a596c02..3708f7c 100644 --- a/notes/templates/note_base.html +++ b/notes/templates/note_base.html @@ -1,3 +1,4 @@ +{% load static %} <!DOCTYPE html> <html lang="en"> @@ -5,37 +6,45 @@ <title>{% block title %}{% endblock %}</title> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> - <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet"> - <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script> + <link href="{% static "notes/style.css" %}" rel="stylesheet"> + <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> </head> <body class="d-flex flex-column min-vh-100"> - <header class="container-fluid p-5 bg-primary text-white text-center"> - <h1><a href="/" class="link-light">Notes</a></h1> + <header class="container-fluid p-5"> + <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 bg-dark text-white text-center mt-5"> + <footer class="container-fluid pt-5 pb-5 ps-md-5 pe-md-5 mt-5"> <div class="row"> - <div class="col-sm"> - <ul> - <li>Row 1</li> - </ul> + <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 class="col-sm"> + <div id="footer-middle" class="col-lg-4 col-md-12 col-sm-12"> <ul> - <li>Row 2</li> + <li><a href="{% url "notes:note_list" %}">Home</a></li> + <li><a href="{% url "notes:archive_main" %}">Archive</a></li> </ul> </div> - <div class="col-sm"> - <ul> - <li>Row 3</li> - </ul> + <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"> + {% 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> + <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> </body> </html> \ No newline at end of file