Skip to content

Commit f4899a7

Browse files
authored
Merge pull request #42 from coderdojo-japan/saikyo-coderdojo-page
企画一覧と、「さいきょうのCoderDojo」ページを追加
2 parents 4a0599a + 10ddf30 commit f4899a7

File tree

4 files changed

+70
-0
lines changed

4 files changed

+70
-0
lines changed

_data/events.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
- title: ぼくのかんがえたさいきょうのCoderDojoワークショップ
2+
outline: 理想のCoderDojoをみんなで考えるワークショップです。ワークシートに自分が考える理想のCoderDojoを書いて、他の参加者とシェアしましょう。
3+
img: /img/events/saikyo-coderdojo.webp
4+
tag: ワークショップ
5+
url: /events/saikyo-coderdojo/

_pages/events.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
layout: default
3+
permalink: /events/
4+
---
5+
<h2 id="outline" class="text-4xl text-center mb-8 pt-40 xl:pt-20">
6+
企画
7+
<span class="block mt-5 text-2xl">EVENTS</span>
8+
</h2>
9+
10+
<ul class="max-w-7xl mx-auto mb-8 px-4 sm:px-8 flex flex-wrap justify-between gap-y-16">
11+
{% for event in site.data.events %}
12+
<li class="w-full md:w-[47%] rounded-xl">
13+
{% if event.url %}
14+
<a href="{{ event.url }}">
15+
<h3 class="text-2xl mb-2 hover:text-[#cc8f2e] transition-colors duration-200">{{ event.title }}</h3>
16+
</a>
17+
{% else %}
18+
<h3 class="text-2xl mb-2">{{ event.title }}</h3>
19+
{% endif %}
20+
21+
{% if event.tag %}
22+
<span class="block w-fit mb-4 min-w-24 text-center px-4 py-px rounded-xs bg-[#cc8f2e] text-white">{{ event.tag }}</span>
23+
{% endif %}
24+
25+
<div class="text-gray-600">
26+
{{ event.outline }}
27+
</div>
28+
29+
{% if event.url %}
30+
<a class="block w-fit my-2 border rounded p-2 hover:bg-[#cc8f2e] hover:text-white transition-colors duration-200" href="{{ event.url }}">
31+
<i class="fas fa-file mx-1"></i> 詳細を見る
32+
</a>
33+
{% endif %}
34+
35+
<div class="flex gap-x-4 mt-8">
36+
<img src="{{ event.img }}" />
37+
</div>
38+
</li>
39+
{% endfor %}
40+
</ul>

_posts/2025-08-28-saikyo-coderdojo.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: post
3+
title: ぼくのかんがえたさいきょうのCoderDojoワークショップ
4+
date: 2025-08-28T00:00:00 UTC+09:00
5+
categories: news
6+
thumbnail: /img/events/saikyo-coderdojo.png
7+
permalink: /events/saikyo-coderdojo/
8+
---
9+
10+
## 対象者
11+
- CoderDojoの運営に口を出せる人(チャンピオン、メンター、その他協力者)
12+
- これからCoderDojoを立ち上げたいと思っている人
13+
- 理想のCoderDojoについて熱く語りたい人
14+
15+
## 内容
16+
理想のCoderDojoをみんなで考えるワークショップです。<br />
17+
ワークシートに自分が考える理想のCoderDojoを書いて、他の参加者とシェアしましょう。
18+
19+
## 持ち物・必要スキル
20+
CoderDojoに対する熱い思い!<br />
21+
手ぶらで参加できます。<br />
22+
※ワークシートや筆記用具はこちらで準備します。<br />
23+
<br />
24+
25+
![](/img/events/saikyo-coderdojo.webp)

img/events/saikyo-coderdojo.webp

30 KB
Binary file not shown.

0 commit comments

Comments
 (0)