use YMD date display format so i don't have to fight americans

This commit is contained in:
2026-04-05 23:37:09 +02:00
parent f09af791e2
commit 777027d471

View File

@@ -25,7 +25,7 @@ pub fn quote(quote: &Quote) -> Markup {
}
}
div class="flex flex-row text-neutral-400 mt-auto pt-4 items-center font-light text-xs" {
p {(quote.timestamp.format("%d/%m/%Y %H:%M"))}
p {(quote.timestamp.format("%Y-%m-%d %H:%M"))}
@if let Some(loc) = &quote.location {
span class="ml-3 scale-[.5]"{(PreEscaped(icons::MAP_PIN))} p { (loc) }
}