Skip to content

Commit c9b13a5

Browse files
committed
Update sprints
1 parent edb0ffc commit c9b13a5

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/content/pages/sprints_info.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ submitted by project maintainers or frequet contributors.
3636

3737
To submit a project for the sprints, head to
3838
[the EuroPython website repository](https://github.com/EuroPython/website) and
39-
add your project as a markdown file in the folder `src/content/spints`. Use the
39+
add your project as a markdown file in the folder `src/content/sprints`. Use the
4040
file `_sprints_template.md` as the template for your project file.
4141

4242
<!-- ## Location of the sprints venue

src/pages/sprints.astro

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,14 @@ import { getCollection } from 'astro:content';
33
import { getEntry, render } from 'astro:content';
44
import Layout from '@layouts/MarkdownLayout.astro';
55
import SprintCard from '@components/SprintCard.astro';
6-
import Headline from "@ui/Headline.astro"
76
import Markdown from "@ui/Markdown.astro";
8-
import TwoCols from "@components/TwoCols.astro";
9-
import Prose from "@ui/Prose.astro";
107
118
const entry = await getEntry('pages', 'sprints_info');
129
1310
if (!entry) {
1411
throw new Error('Could not find page entry.');
1512
}
1613
17-
console.log(entry)
18-
const { Content } = await render(entry);
19-
2014
const sprints = await getCollection("sprints", ({ data }) => {
2115
return import.meta.env.MODE === "production" ? data.draft !== true : true;
2216
});

0 commit comments

Comments
 (0)