Improve style

This commit is contained in:
Akira Tempaku 2025-05-25 16:14:27 +09:00
parent efcb6087b3
commit fdbb595579
Signed by: paku
GPG key ID: 5B4E8402BCC50607

View file

@ -18,20 +18,18 @@
(article :class "prose max-w-none" (article :class "prose max-w-none"
(h1 title) (h1 title)
(raw! content) (raw! content)
(p :class "text-right" (p :class "text-right text-sm text-gray-400"
(and published-at (and published-at
(hsx (hsx
(span (span
"(Published: " "Published: "
(|time| :datetime (datetime published-at) (|time| :datetime (datetime published-at)
(asctime published-at)) (asctime published-at)))))
")")))
(and revised-at (and revised-at
(hsx (hsx
(<> (<>
(br) (br)
(span (span
"(Last updated: " "Last updated: "
(|time| :datetime (datetime revised-at) (|time| :datetime (datetime revised-at)
(asctime revised-at)) (asctime revised-at)))))))))))
")")))))))))