From 9fb36837fa834720a772bb0d369cec2331b0b969 Mon Sep 17 00:00:00 2001
From: Emmanuel Godard <emmanuel.godard@lis-lab.fr>
Date: Fri, 7 Feb 2025 15:16:45 +0100
Subject: [PATCH] modify date in category page

---
 templates/category.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/templates/category.html b/templates/category.html
index 1b2267c..4da0216 100644
--- a/templates/category.html
+++ b/templates/category.html
@@ -1,6 +1,6 @@
 {% extends "base.html" %}
 
-{% block title %}{{ SITENAME }} - Archives{% endblock %}
+{% block title %}{{ SITENAME }} - Schedule{% endblock %}
 
 {% block content %}
     <main>
@@ -15,7 +15,7 @@
 	        {% set ns.current = period %}
 	        {% endif %}
                 <li>
-                  <time>{{ article.date|strftime('%d %b') }}</time><span>&nbsp;&nbsp;</span>
+                  <time>{{ article.date|strftime('%b %d') }}</time><span>&nbsp;&nbsp;</span>
 		  <a href="{{ SITEURL }}/{{ article.url }}"><strong>{{ article.title }}</strong>
 		    {{ article.author }} ({% if article.institution %}{{ article.institution }}{% else %}{{ DEFAULT_INSTITUTION }}{% endif %})
 		  </a>
-- 
GitLab