Skip to content

Commit e5cf6b9

Browse files
committed
Merge remote-tracking branch 'origin/main' into add-code-of-conduct-and-privacy-page
2 parents 8e7434e + 686d688 commit e5cf6b9

File tree

5 files changed

+106
-45
lines changed

5 files changed

+106
-45
lines changed

404.html

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,13 @@
33
layout: default
44
---
55

6-
<style type="text/css" media="screen">
7-
.container {
8-
margin: 10px auto;
9-
max-width: 600px;
10-
text-align: center;
11-
}
12-
h1 {
13-
margin: 30px 0;
14-
font-size: 4em;
15-
line-height: 1;
16-
letter-spacing: -1px;
17-
}
18-
</style>
6+
{% include navbar.html %}
197

20-
<div class="container" style='margin-bottom: 200px;'>
21-
<h1 style='margin-top: 130px;'>Page Not Found</h1>
8+
<div class="text-center my-40 mx-8 xl:my-20">
9+
<h2 class="text-5xl">Page Not Found</h1>
2210

23-
<p><strong>お探しのページが見つかりませんでした 🥹</strong></p>
24-
<p style='margin-bottom: 100px;'>リンク切れなどあれば <a href='https://twitter.com/DojoConJapan'>@DojoConJapan</a> アカウントまで<br class='ignore-sp'>ご報告いただけると嬉しいです 🙏</p>
25-
26-
<h2 style='margin-bottom: 30px;'>
27-
<i class="fab fa-twitter"></i>
28-
<a href='https://twitter.com/DojoConJapan'>
29-
最近の投稿を見る
30-
</a>
31-
</h2>
32-
<a class="twitter-timeline" data-lang="ja" data-height="600" href="https://twitter.com/DojoConJapan?ref_src=twsrc%5Etfw">Tweets by DojoConJapan</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
11+
<p class="my-8">
12+
<strong>お探しのページが見つかりませんでした🥹</strong><br />
13+
リンク切れなどあれば <i class="fab fa-x-twitter"></i> <a href='https://x.com/{{ site.x }}' target="_blank">@DojoConJapan</a> アカウントまで<wbr>ご報告いただけると嬉しいです🙏
14+
</p>
3315
</div>

_data/sponsors.yml

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
# - id: ID(スポンサーページのアンカータグになります)
2+
# name: スポンサー名
3+
# logo: ロゴ画像ファイルのパス
4+
# link: ロゴ画像をクリックした際のリンク先
5+
# type: スポンサー種別(platinum, gold, silver, bronze, inkind, individual)
6+
# message: スポンサー紹介文
7+
8+
- id: cygames
9+
name: 株式会社<wbr>Cygames
10+
logo:
11+
link:
12+
type: gold
13+
message:
14+
15+
- id: sakura_internet
16+
name: さくら<wbr>インターネット<wbr>株式会社
17+
logo:
18+
link:
19+
type: silver
20+
message:
21+
22+
- id: sunnyside_systems
23+
name: サニーサイド<wbr>システムズ<wbr>合同会社
24+
logo:
25+
link:
26+
type: bronze
27+
message:
28+
29+
- id: dojoletter
30+
name: DojoLetter<wbr>編集部
31+
logo:
32+
link:
33+
type: bronze
34+
message:
35+
36+
- id: unique_i_net
37+
name: ユニーク・<wbr>アイネット<wbr>株式会社
38+
logo:
39+
link:
40+
type: bronze
41+
message:
42+
43+
- id: ma
44+
name: 一般社団法人<wbr>MA<wbr>(ProtoPedia)
45+
logo:
46+
link:
47+
type: inkind
48+
message:
49+
50+
- id: nulab
51+
name: 株式会社<wbr>ヌーラボ<wbr>(Backlog)
52+
logo:
53+
link:
54+
type: inkind
55+
message:
56+
57+
- id: yasslab
58+
name: YassLab <wbr>株式会社<wbr>(Doorkeeper)
59+
logo:
60+
link:
61+
type: inkind
62+
message:

_includes/head.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
<meta name="twitter:image" content="{{ site.url }}{{ page.thumbnail }}" />
2525
<meta property="og:image" content="{{ site.url }}{{ page.thumbnail }}" />
2626
{% else %}
27-
<meta name="twitter:image" content="{{ site.url }}/img/{{ site.year }}/ogp/ogp.jpg" />
28-
<meta property="og:image" content="{{ site.url }}/img/{{ site.year }}/ogp/ogp.jpg" />
27+
<meta name="twitter:image" content="{{ site.url }}/img/ogp/ogp.jpg" />
28+
<meta property="og:image" content="{{ site.url }}/img/ogp/ogp.jpg" />
2929
{% endif %}
3030

3131
{% if page.url != "/" %}

_includes/top/sections/sponsor.html

Lines changed: 35 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,62 @@
1+
{% assign gold_sponsors = site.data.sponsors | where: "type", "gold" %}
2+
{% assign silver_sponsors = site.data.sponsors | where: "type", "silver" %}
3+
{% assign bronze_sponsors = site.data.sponsors | where: "type", "bronze" %}
4+
{% assign inkind_sponsors = site.data.sponsors | where: "type", "inkind" %}
5+
{% assign individual_sponsors = site.data.sponsors | where: "type", "individual" %}
6+
17
<h2 class="text-4xl text-center">
28
スポンサー
39
<span class="block mt-5 text-2xl">SPONSOR</span>
410
</h2>
511

6-
<h3 class="text-2xl mt-22 mx-8 text-center mb-4">ゴールドスポンサー
12+
<h3 class="text-2xl mt-10 mx-8 text-center mb-4">ゴールドスポンサー
713
<span class="block text-base mt-1">GOLD SPONSOR</span>
814
</h3>
915

10-
<div class="flex gap-x-8 px-8 max-w-3xl mx-auto">
11-
<img class="w-full max-w-3xl mx-auto mb-8" src="https://placehold.jp/1920x1080.png" alt="ゴールドスポンサーのロゴ">
16+
<div class="flex justify-center flex-wrap gap-x-8 px-8 max-w-3xl w-full mx-auto">
17+
{% for sponsor in gold_sponsors %}
18+
<div class="w-full mb-5">
19+
{% comment %} <img class="w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | strip_html }}のロゴ"> {% endcomment %}
20+
<p class="w-full text-center break-keep text-3xl">{{ sponsor.name }}</p>
21+
</div>
22+
{% endfor %}
1223
</div>
1324

14-
<h3 class="text-2xl mt-22 mx-8 text-center mb-4">シルバースポンサー
25+
<h3 class="text-2xl mt-10 mx-8 text-center mb-4">シルバースポンサー
1526
<span class="block text-base mt-1">SILVER SPONSOR</span>
1627
</h3>
1728

18-
<div class="flex gap-x-8 px-8 max-w-3xl mx-auto">
19-
<div><img class="w-full mx-auto mb-8" src="https://placehold.jp/1920x1080.png" alt="シルバースポンサーのロゴ">
20-
</div>
21-
<div><img class="w-full mx-auto mb-8" src="https://placehold.jp/1920x1080.png" alt="シルバースポンサーのロゴ">
29+
<div class="flex justify-center flex-wrap gap-x-8 px-8 max-w-3xl mx-auto">
30+
{% for sponsor in silver_sponsors %}
31+
<div class="_max-w-[500px] w-full mb-5">
32+
{% comment %} <img class="w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | strip_html }}のロゴ"> {% endcomment %}
33+
<p class="w-full text-center break-keep text-3xl">{{ sponsor.name }}</p>
2234
</div>
35+
{% endfor %}
2336
</div>
2437

25-
<h3 class="text-2xl mt-22 mx-8 text-center mb-4">ブロンズスポンサー
38+
<h3 class="text-2xl mt-10 mx-8 text-center mb-4">ブロンズスポンサー
2639
<span class="block text-base mt-1">BRONZE SPONSOR</span>
2740
</h3>
2841

29-
<div class="flex gap-x-8 px-8 max-w-3xl mx-auto">
30-
<div><img class="w-full mx-auto mb-8" src="https://placehold.jp/1920x1080.png" alt="ブロンズスポンサーのロゴ">
31-
</div>
32-
<div><img class="w-full mx-auto mb-8" src="https://placehold.jp/1920x1080.png" alt="ブロンズスポンサーのロゴ">
42+
<div class="flex justify-center flex-wrap gap-x-8 px-8 max-w-3xl mx-auto">
43+
{% for sponsor in bronze_sponsors %}
44+
<div class="_max-w-[300px] w-full mb-5">
45+
{% comment %} <img class="w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | strip_html }}のロゴ"> {% endcomment %}
46+
<p class="text-center break-keep text-3xl">{{ sponsor.name }}</p>
3347
</div>
48+
{% endfor %}
3449
</div>
3550

36-
<h3 class="text-2xl mt-22 mx-8 text-center mb-4">インカインドスポンサー
51+
<h3 class="text-2xl mt-10 mx-8 text-center mb-4">インカインドスポンサー
3752
<span class="block text-base mt-1">IN-KIND SPONSOR</span>
3853
</h3>
3954

40-
<div class="flex gap-x-8 px-8 max-w-3xl mx-auto">
41-
<div><img class="w-full mx-auto mb-8" src="https://placehold.jp/1920x1080.png" alt="インカインドスポンサーのロゴ">
42-
</div>
43-
<div><img class="w-full mx-auto mb-8" src="https://placehold.jp/1920x1080.png" alt="インカインドスポンサーのロゴ">
55+
<div class="flex justify-center flex-wrap gap-x-8 px-8 max-w-3xl mx-auto">
56+
{% for sponsor in inkind_sponsors %}
57+
<div class="_max-w-[270px] w-full mb-5">
58+
{% comment %} <img class="w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | strip_html }}のロゴ"> {% endcomment %}
59+
<p class="w-full text-center break-keep text-3xl">{{ sponsor.name }}</p>
4460
</div>
61+
{% endfor %}
4562
</div>

img/ogp/ogp.jpg

253 KB
Loading

0 commit comments

Comments
 (0)