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
59 changes: 59 additions & 0 deletions _data/contests_winners.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
works:
"ひらめきゲーム":
author: "奥村総司"
image: "/img/contests/winners/7110.webp"
protopedia: "https://protopedia.net/prototype/7110"

"初心者ねこのお手伝い":
author: "松尾太耀"
image: "/img/contests/winners/7425.webp"
protopedia: "https://protopedia.net/prototype/7425"

"スペース・サイクリング":
author: "内田湘悟"
image: "/img/contests/winners/7434.webp"
protopedia: "https://protopedia.net/prototype/7434"

"ヤモリゲーム":
author: "伊藤碧"
image: "/img/contests/winners/7404.webp"
protopedia: "https://protopedia.net/prototype/7404"

"ピタへび!!":
author: "秋穂遥斗"
image: "/img/contests/winners/7430.webp"
protopedia: "https://protopedia.net/prototype/7430"

"Egg Beat":
author: "花田勘太郎"
image: "/img/contests/winners/7466.webp"
protopedia: "https://protopedia.net/prototype/7466"

"To my parents 〜直接渡せない時用マシーン〜":
author: "yutokome"
image: "/img/contests/winners/7098.webp"
protopedia: "https://protopedia.net/prototype/7098"

winners:
- award: "白帯 最優秀賞"
work: "スペース・サイクリング"

- award: "白帯 優秀賞"
work: "ひらめきゲーム"

- award: "白帯 優秀賞"
work: "初心者ねこのお手伝い"

- award: "黒帯 最優秀賞"
work: "Egg Beat"

- award: "黒帯 優秀賞"
work: "ヤモリゲーム"

- award: "黒帯 優秀賞"
work: "ピタへび!!"

- award: "九州賞"
work: "To my parents 〜直接渡せない時用マシーン〜"


1 change: 1 addition & 0 deletions _data/time_table.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ events:
start: "16:00"
end: "16:10"
title: "コンテスト結果発表"
link: "/contests/winners/"

- room: "5F 大会議室(セッション)"
start: "16:10"
Expand Down
10 changes: 8 additions & 2 deletions _posts/2025-07-21-contest-outline.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,23 @@ permalink: /contests/
tags: イベント
---

<p class="border rounded px-5 py-3 mb-5">
DojoCon Japan 2025 プログラミングコンテストの受賞作品が決定しました。<br>
受賞作品の一覧は下記のページをご覧ください。<br>
<a href="/contests/winners/">DojoCon Japan 2025 プログラミングコンテスト 受賞作品</a>
</p>

<p class="border rounded px-5 py-3 mb-5">
DojoCon Japan 2025 プログラミングコンテストの作品募集は2025年9月7日をもって終了しました。<br>
たくさんのご応募ありがとうございました。<br>
応募作品の一覧は下記のページをご覧ください。<br>
<a href="https://protopedia.net/event/dojocon2025" target="_blank">DojoCon Japan 2025 応募作品</a>
<a href="https://protopedia.net/event/dojocon2025" target="_blank">DojoCon Japan 2025 プログラミングコンテスト 応募作品</a>
</p>

<p>
子ども達に他の地域の文化やコミュニティーにふれてもらいたい。
プログラミングを通じて様々な経験をしてもらいたい。
その思いから、『 DojoCon Japan 2025 プログラミングコンテスト 』を開催いたします。
Copy link
Collaborator Author

Choose a reason for hiding this comment

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

レンダリング上不自然な半角スペースを削除

その思いから、『DojoCon Japan 2025 プログラミングコンテスト』を開催いたします。
一次審査で選ばれた作品は 2025年10月25日(土) に福岡県久留米市で行われる DojoCon Japan 2025 で作品発表していただきます。
</p>

Expand Down
37 changes: 37 additions & 0 deletions _posts/2025-10-25-contest-winners.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
layout: default
date: 2025-10-25
permalink: /contests/winners/
title: DojoCon Japan 2025 プログラミングコンテスト受賞作品一覧
title-in-news-list: プログラミングコンテストの受賞作品が決定しました
tag: コンテスト
categories: news
---

{% include navbar.html %}

<h2 class="mx-auto text-4xl text-center mb-2 mt-30 px-4 sm:px-8 xl:mt-15 break-keep">
プログラミング<wbr>コンテスト 受賞作品一覧
</h2>

<div class="max-w-2xl mx-auto px-4 sm:px-8 my-15">
<section class="w-full mx-auto">
<div class="space-y-15">
{% for w in site.data.contests_winners.winners %}
{% assign work = site.data.contests_winners.works[w.work] %}
<article>
<div>
<h3 class="text-3xl mb-4">{{ w.award }}</h3>
<h4 class="text-2xl mb-2">{{ w.work }}</h4>
</div>

<div class="flex justify-center mb-2">
<img src="{{ work.image }}" alt="{{ w.work }} の画像" class="max-h-90 w-auto max-w-full object-contain rounded-md" />
</div>
<p class="text-base mb-1">作: <strong>{{ work.author }}</strong></p>
<a class="underline text-[#cc8f2e]" href="{{ work.protopedia }}" target="_blank" rel="noopener">ProtoPedia で見る</a>
</article>
{% endfor %}
</div>
</section>
</div>
Binary file added img/contests/winners/7098.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/contests/winners/7110.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/contests/winners/7404.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/contests/winners/7425.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/contests/winners/7430.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/contests/winners/7434.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/contests/winners/7466.webp
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.