further time improvements

This commit is contained in:
Bethlenfalvi, Lorinc (ext)
2025-01-29 12:29:32 +01:00
parent 0db85f6ce5
commit c557a6a132
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@
title: Async Iterator::map
author: lbfalvy
tags: [programming, rust, langdev]
pubDate: 2025-01-29T10:58Z[UTC]
pubDate: 2025-01-29T11:27Z[UTC]
summary: On the state of async Rust, limitations of the type system, and Iterator::map
unlisted: false
---

View File

@@ -13,7 +13,7 @@ const { title, author, summary, pubDate, updatedDate } = Astro.props;
<header class="lg:grid grid-cols-[auto_auto_minmax(300px,_1fr)] grid-rows-[auto_auto]">
<h2 class="font-bold row-span-2 text-2xl m-2 mt-3">{title}</h2>
<address class="post-meta inline-block col-start-2">{author}</address>
<Time time={parseTime(pubDate)} />
<Time client:load time={parseTime(pubDate)} />
<div class="italic tracking-[3px] text-emph-fg col-start-2 col-span-2 m-2 mt-0">{summary}</div>
{updatedDate && <div>
Amended <Time time={parseTime(updatedDate)} />