Skip to content

Commit

Permalink
inital team page
Browse files Browse the repository at this point in the history
  • Loading branch information
daisylb authored and urcheraus committed Dec 15, 2024
1 parent 0d9023e commit 1a3f617
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 8 deletions.
32 changes: 32 additions & 0 deletions src/content/pages/about/team.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
---
title: The PyCon AU team
order: 3
---

# The PyCon AU team

PyCon AU is only possible because of the incredible effort of a team of volunteers.

## Core Team

<!-- Ordering: Conference Director, then Assistant Directors alphabetically, then all other members alphabetically -->

- **Peter Hall**, Conference Director
- **Benno Rice**, Assistant Conference Director
- **Lilly Ryan**, Assistant Conference Director
- **Elena Williams**, Program Chair
- **Jack Skinner**, Sponsorship Coordinator
- **Kalila Lin**, Social Media Coordinator
- **Libby Berrie**, Volunteer Coordinator
- **Maia Sauren**, Program Chair
- **Nic Crouch**, Sponsorship Coordinator
- **Russell Keith-Magee**, Treasurer

## Specialist Track organisers

- DevOops: **Aurynn Shaw**, **Justin Warren**
- Education: **Amanda Hogan**, **Nicky Ringland**, **Sally Gridley**
- Scientific Python: **Adam Graham**, **Charles Turner**, **Genevieve Buckley**, **Kai Striega**, **Paige Martin**

<!-- AV team to go here -->
<!-- Volunteers to go here -->
23 changes: 15 additions & 8 deletions src/pages/program/[sessionId]-[variant].png.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ export async function GET({
params: Params
request: Request
}) {
console.log(params, request)
let session = (await getEntry("sessions", params.sessionId))!
let speakers = await Promise.all(
session?.data.speakers.map(async (speakerId) => {
let speaker = (await getEntry("people", speakerId))!
console.log(speakerId, speaker)
return {
name: speaker.data.name,
image: speaker.data.has_pic
Expand All @@ -30,6 +32,7 @@ export async function GET({
}
}),
)
console.log(session, speakers)
let inputData = {
title: session.data.title,
speakers,
Expand Down Expand Up @@ -64,12 +67,16 @@ export async function GET({

export async function getStaticPaths(): Promise<{ params: Params }[]> {
const pages = await getCollection("sessions")
return pages.filter((entry) => entry.data.speakers.length > 0 && entry.data.room !== null).flatMap((entry) =>
["og", "social", "video"].map((variant) => ({
params: {
sessionId: entry.id,
variant,
},
})),
)
return pages
.filter(
(entry) => entry.data.speakers.length > 0 && entry.data.room !== null,
)
.flatMap((entry) =>
["og", "social","video"].map((variant) => ({
params: {
sessionId: entry.id,
variant,
},
})),
)
}

0 comments on commit 1a3f617

Please sign in to comment.