Skip to content

Commit bc87049

Browse files
authored
Add article listing to /about profile pages, and remove redundant /authors pages (#457)
1 parent e305bad commit bc87049

File tree

115 files changed

+185
-327
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+185
-327
lines changed

src/content.config.ts

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,12 @@ const news = defineCollection({
1414
}),
1515
});
1616

17-
const authors = defineCollection({
18-
loader: glob({ pattern: "**/*.md", base: "./src/content/authors" }),
19-
schema: z.object({
20-
title: z.string(),
21-
handle: z.string(),
22-
github: z.optional(z.string()),
23-
}),
24-
});
25-
2617
const bios = defineCollection({
2718
loader: glob({ pattern: "**/*.md", base: "./src/content/bio" }),
2819
schema: z.object({
2920
title: z.string(),
3021
handle: z.string(),
22+
github: z.optional(z.string()),
3123
}),
3224
});
3325

@@ -50,4 +42,4 @@ const roadmapItems = defineCollection({
5042
}),
5143
});
5244

53-
export const collections = { news, authors, bios, roadmapItems };
45+
export const collections = { news, bios, roadmapItems };

src/content/authors/bart/index.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/content/authors/birk/index.md

Lines changed: 0 additions & 25 deletions
This file was deleted.

src/content/authors/frank/index.md

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/content/authors/hactar/index.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/content/authors/harel/index.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/content/authors/ramyaragupathy/index.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/content/authors/yuri/index.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

src/content/bio/bart/index.md renamed to src/content/bio/bart-louwers/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Bart Louwers
3-
handle: bart
3+
handle: bart-louwers
4+
github: louwers
45
---
56

67
<div class="text-center mb-5">

src/content/bio/birk/index.md renamed to src/content/bio/birk-skyum/index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
---
22
title: Birk Skyum
3-
handle: birk
3+
handle: birk-skyum
4+
github: birkskyum
45
---
56

67
<div class="text-center mb-5">

0 commit comments

Comments
 (0)