Skip to content

Commit 307595b

Browse files
Change date format of blog post to be consistent with talk dates
1 parent e18ccd5 commit 307595b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

blog/gleam-test-timeouts.djot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title = "Test Timeouts in Gleam"
3-
date = "2025-11-25"
3+
date = "25 November, 2025"
44
description = "By default, Gleam tests come with a timeout of 5 seconds. It's not as easy as you might think to remove it."
55
---
66

src/website/page/index.gleam

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,8 +93,10 @@ fn post(post: blog.Post(_)) -> element.Element(_) {
9393
],
9494
[html.text(post.title)],
9595
),
96-
html.p([attribute.class("text-sm m-0")], [element.text(post.date)]),
97-
html.p([attribute.class("text-md my-0.5")], [element.text(post.description)]),
96+
// html.p([attribute.class("text-sm m-0")], [element.text(post.date)]),
97+
html.p([attribute.class("text-md my-0.5")], [
98+
element.text(post.date <> " - " <> post.description),
99+
]),
98100
])
99101
}
100102

0 commit comments

Comments
 (0)