diff --git a/src/components/JournalList.astro b/src/components/JournalList.astro
index cca9df7..eef6b06 100644
--- a/src/components/JournalList.astro
+++ b/src/components/JournalList.astro
@@ -12,41 +12,39 @@ import { Link, Subsubheadline } from '../components';
const { entries } = Astro.props;
---
-
+
+ {
+ entries.map(({ slug, data }) => (
+ -
+
+
+ {data.title}
+
+ {data.cover ? (
+ <>
+ {data.cover.endsWith('.svg') ? (
+
+ ) : (
+
+ )}
+ >
+ ) : (
+
+ )}
+
+
+ ))
+ }
+
diff --git a/src/pages/journal.astro b/src/pages/journal.astro
index a624aad..9ea4985 100644
--- a/src/pages/journal.astro
+++ b/src/pages/journal.astro
@@ -33,5 +33,7 @@ const description = 'I am writing essays about various topics in this Journal.';
-
+
diff --git a/src/pages/tag.astro b/src/pages/tag.astro
index 920bce5..0b52269 100644
--- a/src/pages/tag.astro
+++ b/src/pages/tag.astro
@@ -3,7 +3,7 @@ import { getCollection } from 'astro:content';
import GridLayout from '../layouts/GridLayout.astro';
import PageTitle from '../components/PageTitle.astro';
-import { Tag as TagComponent } from '../components';
+import { Tag } from '../components';
const allJournal = await getCollection('journal');
const uniqueTags = [...new Set(allJournal.map((entry) => entry.data.tags).flat())];
@@ -23,6 +23,6 @@ const description = '…';
>
Tags
diff --git a/src/pages/tag/[tag].astro b/src/pages/tag/[tag].astro
index 1d5683f..188f7db 100644
--- a/src/pages/tag/[tag].astro
+++ b/src/pages/tag/[tag].astro
@@ -62,5 +62,7 @@ const description = '…';
))
}
-
+