We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35c88a8 commit 36477f7Copy full SHA for 36477f7
src/pages/events/mod-garden/nature.astro
@@ -225,4 +225,10 @@ const showcaseEnd = "2025-10-10T00:00:00Z";
225
}
226
highlightCurrentTimelineEntry();
227
setInterval(highlightCurrentTimelineEntry, 1000 * 60);
228
+ let timelineEntries = Array.from(document.querySelectorAll("[data-start-time]"));
229
+ timelineEntries.forEach((entry) => {
230
+ const startTime = entry.getAttribute("data-start-time");
231
+ entry.setAttribute("datetime", Moment(startTime).toISOString());
232
+ });
233
+
234
</script>
0 commit comments