summaryrefslogtreecommitdiff
path: root/website/src/components/LinksFeed.astro
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2025-12-11 14:22:12 +0000
committerJoe Carstairs <me@joeac.net>2025-12-11 14:22:12 +0000
commitcc9a580fe6a1f188de9ca89778cf113984c4327b (patch)
tree918f2814bb59f0845a6f3615804325734096dc37 /website/src/components/LinksFeed.astro
parenta3d0ee043885fdc18bafdd895f8f0c469e7e8a13 (diff)
style changes
Diffstat (limited to 'website/src/components/LinksFeed.astro')
-rw-r--r--website/src/components/LinksFeed.astro6
1 files changed, 3 insertions, 3 deletions
diff --git a/website/src/components/LinksFeed.astro b/website/src/components/LinksFeed.astro
index 9e7e788..1d837f0 100644
--- a/website/src/components/LinksFeed.astro
+++ b/website/src/components/LinksFeed.astro
@@ -63,9 +63,9 @@ const canonicalLinksUrl = new URL('links', Astro.site)
<ul>
{ links.filter(matchesYear(year)).sort(sortByDateAddedDescending).map(link => (
<li class="h-entry e-content">
- <a class="u-url p-name" href={link.href} set:html={link.title} />.
- <Fragment set:html={link.description} />
- Added: <FormattedDate date={link.isoDateAdded} />
+ <FormattedDate className="dt-published" date={link.isoDateAdded} />
+ <a class="u-url p-name" href={link.href} set:html={link.title} />
+ <p class="p-description" set:html={link.description} />
</li>
)) }
</ul>