From 8880d1127805ef21d0472d1488f429ad76ddd95d Mon Sep 17 00:00:00 2001
From: Tom <thomas.hodson@ecmwf.int>
Date: Mon, 9 Sep 2024 12:29:25 +0200
Subject: [PATCH] FIx time bug

---
 _includes/project_summary.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/_includes/project_summary.html b/_includes/project_summary.html
index 13be1ee..a24dcb8 100644
--- a/_includes/project_summary.html
+++ b/_includes/project_summary.html
@@ -10,7 +10,7 @@
     <section class = "text">
     <section class="title-date-container">
         <h2 class="p-name blogroll-title"><a class="u-uid u-url" href="{{ post.url }}">{{ post.title }}</a></h2>
-        <time class="dt-modified" datetime="{{ post.last_modified_at | date_to_xmlschema }}">{{ page.last_modified_at | date: '%b %Y' }}</time>
+        <time class="dt-modified" datetime="{{ post.last_modified_at | date_to_xmlschema }}">{{ post.last_modified_at | date: '%b %Y' }}</time>
     </section> 
     <summary class="p-summary">{{ post.excerpt | markdownify | remove: '<p>' | remove: '</p>' }}</summary>
     </section>