Skip to content

Commit be7ed56

Browse files
Misei.Misei.
authored andcommitted
サイトデザイン更新、CHALLENGE SEASON12 開催概要、hugo buildFuture 有効化
1 parent 6ef4e86 commit be7ed56

6 files changed

Lines changed: 473 additions & 80 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Thumbs.db
1313

1414
# Hugo
1515
public/
16+
public_test_out/
1617
resources/_gen/
1718
.hugo_build.lock
1819

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
title: "FIVESCUP CHALLENGE SEASON12"
3+
date: 2026-04-08T12:00:00+09:00
4+
categories:
5+
- "challenge"
6+
tags:
7+
- "challenge"
8+
- "event"
9+
---
10+
11+
**2026年4月18日(土)****FIVESCUP CHALLENGE SEASON12** を開催します。参加・当日の案内は **[FIVESCUP Discord](https://discord.gg/cEdTyhVRyq)** で行います。
12+
13+
**FIVESCUP CHALLENGE** は、7つある競技マップを少数に絞り、そのマップの習熟度を競うことをコンセプトとした 5vs5 の大会です。
14+
15+
## FIVESCUP CHALLENGE: SEASON12
16+
17+
| 項目 | 内容 |
18+
| --- | --- |
19+
| 大会名 | FIVESCUP CHALLENGE: SEASON12 |
20+
| 対戦形式 | トーナメント戦 |
21+
| フォーマット | Best of 1 |
22+
| MAP POOL | **Dust2 / Mirage / Inferno** |
23+
| 開催日程 | **2026年4月18日(土)** |
24+
| 最大チーム数 | 16チーム(変更の場合はお知らせします) |
25+
| ルール | [大会共通ルール](../../rules/) |
26+
27+
### 賞品
28+
29+
未定
30+
31+
### 参加登録方法
32+
33+
**[FIVESCUP Discord](https://discord.gg/cEdTyhVRyq)** にて参加表明・受付の案内を行います。Google フォームは使用しません。
34+
35+
### 大会進行
36+
37+
**[FIVESCUP Discord](https://discord.gg/cEdTyhVRyq)** にて行います。
38+
39+
#### スケジュール(目安)
40+
41+
変更がある場合は Discord でお知らせします。参考までに、直近の [SEASON11](../fivescup-challenge-season11/) に近い進行の目安です。
42+
43+
| 時刻(目安) | 内容 |
44+
| --- | --- |
45+
| 15:00 | チェックイン開始 |
46+
| 15:30 | チェックイン締切 |
47+
| 15:40 | トーナメント発表 |
48+
| 15:45 | トーナメント 第1試合 |
49+
| 17:00 | トーナメント 第2試合 |
50+
| 18:00 | トーナメント 第3試合 |
51+
| 19:00 | 準決勝 |
52+
| 21:00 | 決勝 |
53+
54+
試合間のインターバルは、両チームの合意があればスキップできるものとします。
55+
56+
### FIVESCUPとは?
57+
58+
**FIVESCUP** は S5 Works が運営・主催する **Counter-Strike 2(CS2)** シリーズのオンライン大会です。コミュニティを重視した大会を目指しています。

hugo.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
baseURL = 'https://fivescup.github.io/'
55
languageCode = 'ja'
66
title = 'S5Works | FIVESCUP'
7+
# 開催予定の記事(日付が「未来」)も静的生成に含める
8+
buildFuture = true
79

810
[markup]
911
[markup.goldmark]

layouts/_default/baseof.html

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,24 @@
66
<title>{{ block "title" . }}{{ .Title }} | {{ .Site.Title }}{{ end }}</title>
77
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{ .Site.Params.description }}{{ end }}">
88
<link rel="canonical" href="{{ .Permalink }}">
9+
<link rel="preconnect" href="https://fonts.googleapis.com">
10+
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
11+
<link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap" rel="stylesheet">
912
<link rel="stylesheet" href="{{ "css/style.css" | relURL }}">
1013
{{ block "head" . }}{{ end }}
1114
</head>
1215
<body>
16+
<a class="skip-link" href="#main-content">本文へスキップ</a>
1317
<header class="site-header">
18+
<div class="site-header__accent" aria-hidden="true"></div>
1419
<div class="site-header__inner">
15-
<h1 class="site-title">
16-
<a href="{{ "" | relLangURL }}">{{ .Site.Title }}</a>
17-
</h1>
18-
<nav aria-label="メインナビゲーション">
20+
<div class="site-brand">
21+
<a href="{{ "" | relLangURL }}" class="site-brand__link">
22+
<span class="site-brand__logo">FIVESCUP</span>
23+
<span class="site-brand__tagline">S5Works 主催 · CS2 / VALORANT</span>
24+
</a>
25+
</div>
26+
<nav class="site-nav-wrap" aria-label="メインナビゲーション">
1927
<ul class="site-nav">
2028
<li><a href="{{ "" | relLangURL }}"{{ if .IsHome }} aria-current="page"{{ end }}>ホーム</a></li>
2129
<li><a href="{{ "about-fivescup/" | relLangURL }}"{{ if in .RelPermalink "/about-fivescup/" }} aria-current="page"{{ end }}>FIVESCUPとは?</a></li>
@@ -25,12 +33,31 @@ <h1 class="site-title">
2533
</nav>
2634
</div>
2735
</header>
28-
<main class="main">
36+
<main id="main-content" class="main" tabindex="-1">
2937
{{ block "main" . }}{{ end }}
3038
</main>
3139
<footer class="site-footer">
3240
<div class="site-footer__inner">
33-
<p>{{ .Site.Title }}</p>
41+
<div class="site-footer__top">
42+
<div class="site-footer__brand">
43+
<span class="site-footer__name">FIVESCUP</span>
44+
<span class="site-footer__desc">{{ .Site.Params.description }}</span>
45+
</div>
46+
<nav class="site-footer__nav" aria-label="フッターナビゲーション">
47+
<ul>
48+
<li><a href="{{ "" | relLangURL }}">ホーム</a></li>
49+
<li><a href="{{ "about-fivescup/" | relLangURL }}">FIVESCUPとは?</a></li>
50+
<li><a href="{{ "rules/" | relLangURL }}">大会共通ルール</a></li>
51+
<li><a href="{{ "posts/" | relLangURL }}">投稿一覧</a></li>
52+
</ul>
53+
</nav>
54+
</div>
55+
<div class="site-footer__bottom">
56+
<p class="site-footer__copy">© {{ now.Format "2006" }} S5Works · {{ .Site.Title }}</p>
57+
<p class="site-footer__host">
58+
<a href="https://github.com/FIVESCUP/fivescup.github.io" rel="noopener noreferrer">GitHub</a>
59+
</p>
60+
</div>
3461
</div>
3562
</footer>
3663
</body>

layouts/_default/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{{ define "title" }}{{ .Site.Title }}{{ end }}
22
{{ define "main" }}
33
<div class="hero">
4+
<p class="hero__eyebrow">オンライン大会 · Counter-Strike</p>
45
<h1 class="hero__title">{{ .Title }}</h1>
56
<p class="hero__desc">FIVESCUP は S5 Works が運営・主催する Counter-Strike シリーズのオンライン大会です。</p>
67
</div>

0 commit comments

Comments
 (0)