diff --git a/src/pages/projects.astro b/src/pages/projects.astro index d2245452..f77411e2 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -12,7 +12,7 @@ const metadata: Partial = { title: "Projects", }; --- - + {projects.map((project, index) =>( diff --git a/src/pages/tags/[slug].astro b/src/pages/tags/[slug].astro index 2b11d964..517c29dd 100644 --- a/src/pages/tags/[slug].astro +++ b/src/pages/tags/[slug].astro @@ -42,7 +42,7 @@ export async function getStaticPaths() { const { slug } = Astro.params as TagParams; const { tag } = Astro.props as TagProps; const metadata: Partial = { - title: tag.title, + title: `#${slug}`, }; --- diff --git a/src/pages/tags/index.astro b/src/pages/tags/index.astro index b6e575cf..5a8a6534 100644 --- a/src/pages/tags/index.astro +++ b/src/pages/tags/index.astro @@ -8,7 +8,7 @@ import "./_tags.css"; const tags = await getCollection("tags"); const metadata: Partial = { - title: tag.title, + title: "Tags", }; --- @@ -21,7 +21,7 @@ const metadata: Partial = {

{letter.data.name}

    {tags[index].data.tags.map((tag) => ( -
  • +
  • {tag.name}(×{tag.count})