From eeb9ee9d9b600f3dd0e81056fd2f1642d9756fcc Mon Sep 17 00:00:00 2001
From: Patrick Canterino <patrick@patrick-canterino.de>
Date: Sun, 13 Feb 2022 20:25:29 +0100
Subject: [PATCH] Removed now unnecessary slash

---
 notes/templates/archive_month.html | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/notes/templates/archive_month.html b/notes/templates/archive_month.html
index 835fcca..3eb81ee 100644
--- a/notes/templates/archive_month.html
+++ b/notes/templates/archive_month.html
@@ -1,10 +1,10 @@
 {% extends "note_base.html" %}
 {% load notes_extras %}
 
-{% block title %}Archive {{ month|month_name}} / {{ year }} – Notes{% endblock %}
+{% block title %}Archive {{ month|month_name}} {{ year }} – Notes{% endblock %}
 
 {% block content %}
-<h2>Archive {{ month|month_name }} / {{ year }}</h2>
+<h2>Archive {{ month|month_name }} {{ year }}</h2>
 
 {% if notes %}
 <ul>
@@ -15,4 +15,4 @@
 {% else %}
 <p>No notes</p>
 {% endif %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}
-- 
2.34.1