-
-
Notifications
You must be signed in to change notification settings - Fork 0
コンテスト受賞者の情報を追加 #135
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
コンテスト受賞者の情報を追加 #135
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
f9e45c2
コンテスト入賞ページの仮実装
Fukusan64 8db0af3
fix: typo
mucho613 86b8779
受賞作品について追記
mucho613 4ea25c6
ニュースリストに記載
mucho613 907c60f
タイトル部分に半角スペースを追加
mucho613 977d71d
タイムテーブルからのリンクを追加
mucho613 c149d0b
日付を修正
mucho613 2cd2356
不要な assign を削除
mucho613 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 〜直接渡せない時用マシーン〜" | ||
|
|
||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
レンダリング上不自然な半角スペースを削除