color: #212529;
}
+h2 {
+ padding-top: 1em;
+}
article .publication-date {
font-style: italic;
{% block title %}Archive – Notes{% endblock %}
{% block content %}
-<h2 class="container mt-5">Archive</h2>
+<h2>Archive</h2>
{% if years %}
<ul>
{% block title %}Archive {{ month }} / {{ year }} – Notes{% endblock %}
{% block content %}
-<h2 class="container mt-5">Archive {{ month }} / {{ year }}</h2>
+<h2>Archive {{ month }} / {{ year }}</h2>
{% if notes %}
<ul>
{% block title %}Archive {{ year }} – Notes{% endblock %}
{% block content %}
-<h2 class="container mt-5">Archive {{ year }}</h2>
+<h2>Archive {{ year }}</h2>
{% if months %}
<ul>
{% load markdownify %}
-<article class="container mt-5{% if note.is_draft %} text-muted{% endif %}">
+<article{% if note.is_draft %} class="text-muted"{% endif %}>
<h2><a href="{{ note.get_absolute_url }}"{% if note.is_draft %} class="text-muted"{% endif %}>{{ note.title }}</a></h2>
{% if note.is_draft %}<p class="fw-bold">Status: Draft</p>{% endif %}
<div class="mt-3">{{ note.content|linebreaksbr|markdownify }}</div>