+{% load static %}
<!DOCTYPE html>
<html lang="en">
<title>{% block title %}{% endblock %}</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
+ <link href="{% static "notes/style.css" %}" rel="stylesheet">
<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>
</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">
{% block content %}{% endblock %}
</div>
- <footer class="container-fluid p-5 bg-dark text-white mt-5">
+ <footer class="container-fluid p-5 mt-5">
<div class="row">
- <div class="col-lg-6 col-md-12 col-sm-12">
- <ul style="list-style-type: none; margin-left: 0; padding-left: 0;">
- <li><a href="/" class="link-light">Home</a></li>
- <li><a href="/archive/" class="link-light">Archive</a></li>
+ <div class="col-lg-3 col-md-12 col-sm-12">
+ <ul>
+ <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-lg-6 col-md-12 col-sm-12">
- This site contains random notes and thoughts by <a href="https://www.patrick-canterino.de/" class="link-light">Patrick Canterino</a>.<br>
- If you have any questions, you may write me an email: <a href="mailto:patrick@patrick-canterino.de" class="link-light">patrick@patrick-canterino.de</a>
+ <div class="col-lg-3 offset-lg-6 col-md-12 col-sm-12">
+ This site contains random notes and thoughts by <a href="https://www.patrick-canterino.de/">Patrick Canterino</a>.<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 class="text-center">
- © 2022 <a href="https://www.patrick-canterino.de/" class="link-light">Patrick Canterino</a>
+ <div id="copyright">
+ © 2022 <a href="https://www.patrick-canterino.de/">Patrick Canterino</a>
</div>
</footer>
</body>