We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88e5662 commit 7162c2aCopy full SHA for 7162c2a
src/pages/sprints.astro
@@ -1,6 +1,6 @@
1
---
2
import { getCollection } from 'astro:content';
3
-import { getEntry, render } from 'astro:content';
+import { getEntry } from 'astro:content';
4
import Layout from '@layouts/MarkdownLayout.astro';
5
import SprintCard from '@components/SprintCard.astro';
6
import Markdown from "@ui/Markdown.astro";
@@ -22,7 +22,7 @@ const sprints = await getCollection("sprints", ({ data }) => {
22
23
24
25
-<Layout title=`${entry.title}` description=`${entry.description}` toc=true>
+<Layout title=`${entry.data.title}` description=`${entry.data.description}` toc=true>
26
27
<Markdown content={entry.body} />
28
<div class="flex flex-wrap gap-8 justify-center my-8">
0 commit comments