Skip to content

Commit 64dfe46

Browse files
authored
Add new sites, fix preview for nested routes (#7)
1 parent 6e36df0 commit 64dfe46

File tree

9 files changed

+39
-4
lines changed

9 files changed

+39
-4
lines changed

astro.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export default defineConfig({
1212
},
1313
adapter: netlify(),
1414
prefetch: true,
15-
trailingSlash: "never",
1615
redirects: {
1716
"/ch/00": "/",
1817
"/about": "/credits",

src/channels/01-games.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@ schedule:
5454
- "23:30":
5555
tuesday:
5656
- "00:00":
57+
title: Peter Talisman
58+
author:
59+
- Callum Copley
60+
- Ben West
61+
- Joseph Pleass
62+
url: https://petertalisman.quest/
5763
- "00:30":
5864
- "01:00":
5965
- "01:30":

src/channels/02-art.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ schedule:
7777
- "09:00":
7878
- "09:30":
7979
- "10:00":
80+
title: A Friend is Writing
81+
author:
82+
- Ben West
83+
- Callum Copley
84+
url: https://a-friend-is-writing.bewe.me/
8085
- "10:30":
8186
- "11:00":
8287
- "11:30":
@@ -89,6 +94,8 @@ schedule:
8994
- "15:00":
9095
- "15:30":
9196
- "16:00":
97+
title: nature
98+
url: https://xixxii.neocities.org/projects/weirdweboctober24/01-nature
9299
- "16:30":
93100
- "17:00":
94101
- "17:30":

src/channels/04-personal.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ schedule:
2424
- "08:00":
2525
- "08:30":
2626
- "09:00":
27+
title: Lean Rada
28+
author: Lean Rada
29+
url: https://leanrada.com/
2730
- "09:30":
2831
- "10:00":
2932
- "10:30":

src/channels/05-poetry.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,8 @@ schedule:
258258
- "09:00":
259259
- "09:30":
260260
- "10:00":
261+
title: FORM
262+
url: https://www.c3.hu/collection/form/index1.html
261263
- "10:30":
262264
- "11:00":
263265
- "11:30":

src/channels/06-single-use.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -223,6 +223,9 @@ schedule:
223223
- "23:30":
224224
friday:
225225
- "00:00":
226+
title: Nothing
227+
author: Maze Heart
228+
url: https://nothing.mvze.net/
226229
- "00:30":
227230
- "01:00":
228231
- "01:30":
@@ -359,6 +362,9 @@ schedule:
359362
- "13:00":
360363
- "13:30":
361364
- "14:00":
365+
title: Seventh Sanctum
366+
author: Steven Savage
367+
url: https://www.seventhsanctum.com/
362368
- "14:30":
363369
- "15:00":
364370
- "15:30":

src/channels/08-archives.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ schedule:
101101
- "23:30":
102102
wednesday:
103103
- "00:00":
104+
title: Stolen Buttons
105+
author: Anatoly Zenkov
106+
url: https://anatolyzenkov.com/stolen-buttons
104107
- "00:30":
105108
- "01:00":
106109
- "01:30":
@@ -150,6 +153,9 @@ schedule:
150153
- "23:30":
151154
thursday:
152155
- "00:00":
156+
title: Genderswap FM
157+
author: Eva Decker
158+
url: https://genderswap.fm/
153159
- "00:30":
154160
- "01:00":
155161
- "01:30":
@@ -331,6 +337,9 @@ schedule:
331337
- "12:00":
332338
- "12:30":
333339
- "13:00":
340+
title: Genders.WTF
341+
author: Effy Elden
342+
url: https://genders.wtf/
334343
- "13:30":
335344
- "14:00":
336345
- "14:30":

src/channels/09-misc.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,9 @@ schedule:
329329
- "10:00":
330330
- "10:30":
331331
- "11:00":
332+
title: Very Interactive
333+
author: Laurel Schwulst
334+
url: https://veryinteractive.net/
332335
- "11:30":
333336
- "12:00":
334337
- "12:30":

src/pages/test/[id].astro renamed to src/pages/test/[...url].astro

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ import IFrame from "@components/IFrame.astro";
33
import Television from "@components/Television.astro";
44
import Layout from "@layouts/Layout.astro";
55
6-
const { id } = Astro.params;
7-
if (!id) return Astro.redirect("/test");
6+
const { url } = Astro.params;
7+
if (!url) return Astro.redirect("/test");
88
---
99

1010
<Layout title="Site Preview">
@@ -17,6 +17,6 @@ if (!id) return Astro.redirect("/test");
1717
channelId="PRE"
1818
channelName="Preview"
1919
>
20-
<IFrame src={`https://${id}`} />
20+
<IFrame src={`https://${url}`} />
2121
</Television>
2222
</Layout>

0 commit comments

Comments
 (0)