Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
7 changes: 7 additions & 0 deletions _data/events.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,21 @@
img: /img/events/blender-shimaenaga.webp
tag: イベント
url: /events/blender-shimaenaga/
date: 2025-09-14T00:00:00+09:00
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

時刻部分は不要ではないですか?

Suggested change
date: 2025-09-14T00:00:00+09:00
date: 2025-09-14

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


- title: CoderDojoなんでも相談カフェ
outline: CoderDojoに関わる事であればなんでも相談できるカフェ
img: /img/events/nandemo-sodan-cafe.webp
tag: イベント
url: /events/nandemo-sodan-cafe/
date: 2025-09-05T00:00:00+09:00

- title: ぼくのかんがえたさいきょうのCoderDojoワークショップ
outline: 理想のCoderDojoをみんなで考えるワークショップです。ワークシートに自分が考える理想のCoderDojoを書いて、他の参加者とシェアしましょう。
img: /img/events/saikyo-coderdojo.webp
tag: ワークショップ
url: /events/saikyo-coderdojo/
date: 2025-08-28T00:00:00+09:00

- title: DojoCon Japan 2025 プログラミングコンテスト
outline: |
Expand All @@ -26,17 +29,21 @@
img: /img/contests/cover.webp
tag: コンテスト
url: /contests/
date: 2025-07-21T00:00:00+09:00

- title: 言葉で強くなる!eスポーツ×教育ワークショップ
outline: |
eスポーツを通じて、言語化能力・状況把握力・自己肯定感を育む教育的ワークショップ。ゲームを「楽しむ」だけで終わらせず、自分の言葉で振り返ることで、学びと成長につなげます。
img: /img/events/playrise-esports-edu-workshop.webp
tag: ワークショップ
url: /events/playrise-esports-edu-workshop/
date: 2025-09-25T00:00:00+09:00

- title: eスポーツとスポーツの交差点:共通点と未来への課題
outline: |
「eスポーツはスポーツじゃない?」そんな声に対して、日本国内の事例をもとに、両者の共通点と今後の課題を探る展示。法整備や民間理解の促進に向けたヒントを提示します。
img: /img/events/playrise-exhibition.webp
tag: 展示
url: /events/playrise-exhibition/
date: 2025-09-25T00:00:00+09:00

2 changes: 1 addition & 1 deletion _includes/top/sections/event.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ <h2 class="text-4xl mb-4 text-center lg:text-left">
</div>
</div>
<ul class="grid grid-cols-1 md:grid-cols-2 xl:grid-cols-3 gap-x-6 gap-y-12 lg:-mt-16 lg:w-3/5">
{% assign events = site.data.events | slice: 0, 6 %}
{% assign events = site.data.events | sort: "date" | reverse | slice: 0, 6 %}
{% for event in events %}
<li class="flex flex-col min-w-0">
<a href="{{ event.url }}" class="block hover:opacity-80 transition grow">
Expand Down
3 changes: 2 additions & 1 deletion _pages/events.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ title: イベント
</h2>

<ul class="max-w-7xl mx-auto mb-8 px-4 sm:px-8 flex flex-wrap justify-between gap-y-16">
{% for event in site.data.events %}
{% assign events = site.data.events | sort: "date" | reverse %}
{% for event in events %}
<li class="w-full md:w-[47%] rounded-xl">
{% if event.url %}
<a href="{{ event.url }}">
Expand Down