Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 49 additions & 0 deletions contents/articles/2025/03-24_joint-welcome-session/index.md
Original file line number Diff line number Diff line change
@@ -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 フォームを提出するだけ! <https://forms.gle/sAU7A9uMVerQPpUb6>

(当日飛び入り参加も OK!)

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions src/layouts/meta.astro
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const url = Astro.url.href;
/>
<meta property="og:site_name" content="ut.code();" />
<meta property="og:title" content={title} />
{description && <meta property="og:description" content={description} />}
<meta property="og:image" content={image.src} />
<meta property="og:url" content={url} />
<meta property="og:locale" content="ja_JP" />
Expand Down
4 changes: 2 additions & 2 deletions src/pages/articles/[...id].astro
Original file line number Diff line number Diff line change
Expand Up @@ -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}`,
Expand All @@ -26,7 +26,7 @@ if (article.data.author && !author)

<GlobalLayout
title={article.data.title}
description="ut.code(); のウェブサイトに書かれた記事のひとつです。"
description={"ut.code(); のウェブサイトに書かれた記事のひとつです。"}
focus={Focus.articles}
image={article.data.image}
>
Expand Down