Skip to content

Commit 034b2a0

Browse files
committed
Reorganize pathnames.
1 parent 2e76863 commit 034b2a0

File tree

5 files changed

+2
-80
lines changed

5 files changed

+2
-80
lines changed

scripts/download_social.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const puppeteer = require("puppeteer");
66
args: ["--no-sandbox", "--disable-setuid-sandbox"],
77
});
88
const page = await browser.newPage();
9-
await page.goto("http://localhost:4321/media/social_media_cards");
9+
await page.goto("http://localhost:4321/media/speakers");
1010

1111
const elements = await page.$$(".social");
1212

src/pages/media/social_media.csv.ts

Lines changed: 0 additions & 78 deletions
This file was deleted.
File renamed without changes.

src/pages/media/social_media_cards.astro renamed to src/pages/media/speakers.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ type Speaker = CollectionEntry<"speakers">;
2020
<body class="overflow-auto">
2121
{
2222
speakers.map((entry: Speaker) => (
23-
<a href=`/media/card/${entry.data.slug}`>
23+
<a href=`/media/speaker/${entry.data.slug}`>
2424
<div class="social relative w-[900px] h-[900px] overflow-hidden" data-slug={entry.data.slug}>
2525
<SocialMediaCard entry={entry} />
2626
</div>
File renamed without changes.

0 commit comments

Comments
 (0)