diff --git a/contents/articles/2025/03-24_joint-welcome-session/index.md b/contents/articles/2025/03-24_joint-welcome-session/index.md new file mode 100644 index 00000000..406136c1 --- /dev/null +++ b/contents/articles/2025/03-24_joint-welcome-session/index.md @@ -0,0 +1,49 @@ +--- +title: 東大エンジニア系サークル合同新歓を開催します +image: ./thumbnail.png +categories: +- event +author: ykobayashi +date: 2025-03-24 +--- + +## 📌 イベント概要 + +### 📅 開催日時 + +- 4/9 (火) 18:30 開場 / 19:00 〜 21:00 +- 4/15 (月) 18:30 開場 / 19:00 〜 21:00 + +### 🏢 開催場所 + +📍 駒場学生会館予定 +- 部屋が確定し次第お知らせいたします。 +- 抽選があるため、もし会場が確保できなかった場合は他の教室に変更する場合があります。 + +## 📝 イベント内容 + +1. サークル紹介プレゼン(各サークル 5 分程度) + - 活動内容、雰囲気、過去のプロジェクトなどを紹介! + +2. 座談会(1セクション 10 分) + - 新入生をグループに分け、各グループにサークルメンバーが参加。 + - 15分ごとにサークルが入れ替わり、複数のサークルの先輩の話を聞けます! + +3. 個別相談会(終了まで) + - 「もっと詳しく知りたい!」という方のために、ブースを用意! + - 直接サークルメンバーに質問したり、入会相談も可能! + +## 👥 参加サークル + +- [ut.code();](https://utcode.net) +- [TSG](https://tsg.ne.jp/) +- [RoboTech](https://robotech.tuk.t.u-tokyo.ac.jp/) +- [UTFF](https://utff.com/) +- 灯 ([X](https://x.com/UT_TOMOSHIBI)) + +## 📢 参加方法 + +✅ Google フォームを提出するだけ! + +(当日飛び入り参加も OK!) + diff --git a/contents/articles/2025/03-24_joint-welcome-session/thumbnail.png b/contents/articles/2025/03-24_joint-welcome-session/thumbnail.png new file mode 100644 index 00000000..0467afde Binary files /dev/null and b/contents/articles/2025/03-24_joint-welcome-session/thumbnail.png differ diff --git a/src/layouts/meta.astro b/src/layouts/meta.astro index 634ce4e4..19909944 100644 --- a/src/layouts/meta.astro +++ b/src/layouts/meta.astro @@ -21,6 +21,7 @@ const url = Astro.url.href; /> +{description && } diff --git a/src/pages/articles/[...id].astro b/src/pages/articles/[...id].astro index 0186381f..b82993d0 100644 --- a/src/pages/articles/[...id].astro +++ b/src/pages/articles/[...id].astro @@ -17,7 +17,7 @@ export async function getStaticPaths() { const { article } = Astro.props; const { Content } = await render(article); const author = - article.data.author && (await getEntry("members", article.data.author?.id)); + article.data.author && (await getEntry("members", article.data.author.id)); if (article.data.author && !author) throw new Error( `Author not found for article ${article.id}, searched for author ${article.data.author.id}`, @@ -26,7 +26,7 @@ if (article.data.author && !author)