From 990dac3ab6088895ff78b686b22623a818a52aba Mon Sep 17 00:00:00 2001 From: Fukusan64 Date: Sun, 24 Aug 2025 17:17:31 +0900 Subject: [PATCH 1/9] =?UTF-8?q?=E3=82=B9=E3=83=9D=E3=83=B3=E3=82=B5?= =?UTF-8?q?=E3=83=BC=E3=82=BB=E3=82=AF=E3=82=B7=E3=83=A7=E3=83=B3=E4=BB=AE?= =?UTF-8?q?=E7=BD=AE=E3=81=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _data/sponsors.yml | 56 +++++++++++++++++++++++++++++ _includes/top/sections/sponsor.html | 54 ++++++++++++++++++---------- 2 files changed, 92 insertions(+), 18 deletions(-) create mode 100644 _data/sponsors.yml diff --git a/_data/sponsors.yml b/_data/sponsors.yml new file mode 100644 index 00000000..959fda2a --- /dev/null +++ b/_data/sponsors.yml @@ -0,0 +1,56 @@ +# - id: ID(スポンサーページのアンカータグになります) +# name: スポンサー名 +# logo: ロゴ画像ファイルのパス +# link: ロゴ画像をクリックした際のリンク先 +# type: スポンサー種別(platinum, gold, silver, bronze, inkind, individual) +# message: スポンサー紹介文 + +- id: cygames + name: "株式会社Cygames" + logo: https://placehold.jp/1920x1080.png + link: + type: gold + message: + +- id: sakura_internet + name: さくらインターネット株式会社 + logo: https://placehold.jp/1920x1080.png + link: + type: silver + message: + +- id: sunnyside_systems + name: "サニーサイドシステムズ合同会社" + logo: https://placehold.jp/1920x1080.png + link: + type: bronze + message: + +- id: dojoletter + name: DojoLetter編集部 + logo: https://placehold.jp/1920x1080.png + link: + type: bronze + message: + +- id: unique_i_net + name: ユニーク・アイネット株式会社 + logo: https://placehold.jp/1920x1080.png + link: + type: bronze + message: + +- id: ma + name: 一般社団法人MA(Protopedia) + logo: https://placehold.jp/1920x1080.png + link: + type: inkind + message: + +- id: nulab + name: 株式会社ヌーラボ(Backlog) + logo: https://placehold.jp/1920x1080.png + link: + type: inkind + message: + diff --git a/_includes/top/sections/sponsor.html b/_includes/top/sections/sponsor.html index 7db440ff..64d14983 100644 --- a/_includes/top/sections/sponsor.html +++ b/_includes/top/sections/sponsor.html @@ -1,45 +1,63 @@ +{% assign platinum_sponsors = site.data.sponsors | where: "type", "platinum" %} +{% assign gold_sponsors = site.data.sponsors | where: "type", "gold" %} +{% assign silver_sponsors = site.data.sponsors | where: "type", "silver" %} +{% assign bronze_sponsors = site.data.sponsors | where: "type", "bronze" %} +{% assign inkind_sponsors = site.data.sponsors | where: "type", "inkind" %} +{% assign individual_sponsors = site.data.sponsors | where: "type", "individual" %} +

スポンサー SPONSOR

-

ゴールドスポンサー +

ゴールドスポンサー GOLD SPONSOR

-
- ゴールドスポンサーのロゴ +
+ {% for sponsor in gold_sponsors %} +
+ {{ sponsor.name | strip_html }}のロゴ +

{{ sponsor.name }}

+
+ {% endfor %}
-

シルバースポンサー +

シルバースポンサー SILVER SPONSOR

-
-
シルバースポンサーのロゴ -
-
シルバースポンサーのロゴ +
+ {% for sponsor in silver_sponsors %} +
+ {{ sponsor.name | strip_html }}のロゴ +

{{ sponsor.name }}

+ {% endfor %}
-

ブロンズスポンサー +

ブロンズスポンサー BRONZE SPONSOR

-
-
ブロンズスポンサーのロゴ -
-
ブロンズスポンサーのロゴ +
+ {% for sponsor in bronze_sponsors %} +
+ {{ sponsor.name | strip_html }}のロゴ +

{{ sponsor.name }}

+ {% endfor %}
-

インカインドスポンサー +

インカインドスポンサー IN-KIND SPONSOR

-
-
インカインドスポンサーのロゴ -
-
インカインドスポンサーのロゴ +
+ {% for sponsor in inkind_sponsors %} +
+ {{ sponsor.name | strip_html }}のロゴ +

{{ sponsor.name }}

+ {% endfor %}
From 66950cee34a8c7166c52f45665f913aeb068948f Mon Sep 17 00:00:00 2001 From: Fukusan64 Date: Sun, 24 Aug 2025 18:02:39 +0900 Subject: [PATCH 2/9] fix-typo ProtoPedia --- _data/sponsors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/sponsors.yml b/_data/sponsors.yml index 959fda2a..33c06c39 100644 --- a/_data/sponsors.yml +++ b/_data/sponsors.yml @@ -41,7 +41,7 @@ message: - id: ma - name: 一般社団法人MA(Protopedia) + name: 一般社団法人MA(ProtoPedia) logo: https://placehold.jp/1920x1080.png link: type: inkind From 09cc5733b301bd82581c2195effcc37d5cb2bf5c Mon Sep 17 00:00:00 2001 From: Fukusan64 Date: Sun, 24 Aug 2025 18:03:36 +0900 Subject: [PATCH 3/9] =?UTF-8?q?=E3=82=B9=E3=83=9D=E3=83=B3=E3=82=B5?= =?UTF-8?q?=E3=83=BC=E8=BF=BD=E5=8A=A0(YassLab=E6=A0=AA=E5=BC=8F=E4=BC=9A?= =?UTF-8?q?=E7=A4=BE)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _data/sponsors.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/_data/sponsors.yml b/_data/sponsors.yml index 33c06c39..73753af1 100644 --- a/_data/sponsors.yml +++ b/_data/sponsors.yml @@ -54,3 +54,9 @@ type: inkind message: +- id: yasslab + name: "YassLab株式会社" + logo: https://placehold.jp/1920x1080.png + link: + type: inkind + message: From fdc67806d56c7c5d632f5ed1b2632dce3093e103 Mon Sep 17 00:00:00 2001 From: Fukusan64 Date: Sun, 24 Aug 2025 18:05:22 +0900 Subject: [PATCH 4/9] =?UTF-8?q?=E3=82=B9=E3=83=9D=E3=83=B3=E3=82=B5?= =?UTF-8?q?=E3=83=BC=E8=A1=A8=E7=A4=BA=E3=81=8B=E3=82=89=E3=83=AD=E3=82=B4?= =?UTF-8?q?=E3=82=92=E4=B8=80=E6=99=82=E5=89=8A=E9=99=A4(=E6=8F=83?= =?UTF-8?q?=E3=81=A3=E3=81=9F=E3=82=89=E6=8E=B2=E8=BC=89=E3=81=99=E3=82=8B?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _data/sponsors.yml | 16 ++++++++-------- _includes/top/sections/sponsor.html | 22 +++++++++++----------- 2 files changed, 19 insertions(+), 19 deletions(-) diff --git a/_data/sponsors.yml b/_data/sponsors.yml index 73753af1..5abc0041 100644 --- a/_data/sponsors.yml +++ b/_data/sponsors.yml @@ -7,56 +7,56 @@ - id: cygames name: "株式会社Cygames" - logo: https://placehold.jp/1920x1080.png + logo: link: type: gold message: - id: sakura_internet name: さくらインターネット株式会社 - logo: https://placehold.jp/1920x1080.png + logo: link: type: silver message: - id: sunnyside_systems name: "サニーサイドシステムズ合同会社" - logo: https://placehold.jp/1920x1080.png + logo: link: type: bronze message: - id: dojoletter name: DojoLetter編集部 - logo: https://placehold.jp/1920x1080.png + logo: link: type: bronze message: - id: unique_i_net name: ユニーク・アイネット株式会社 - logo: https://placehold.jp/1920x1080.png + logo: link: type: bronze message: - id: ma name: 一般社団法人MA(ProtoPedia) - logo: https://placehold.jp/1920x1080.png + logo: link: type: inkind message: - id: nulab name: 株式会社ヌーラボ(Backlog) - logo: https://placehold.jp/1920x1080.png + logo: link: type: inkind message: - id: yasslab name: "YassLab株式会社" - logo: https://placehold.jp/1920x1080.png + logo: link: type: inkind message: diff --git a/_includes/top/sections/sponsor.html b/_includes/top/sections/sponsor.html index 64d14983..a14abdaf 100644 --- a/_includes/top/sections/sponsor.html +++ b/_includes/top/sections/sponsor.html @@ -17,8 +17,8 @@

ゴールドスポンサー
{% for sponsor in gold_sponsors %}
- {{ sponsor.name | strip_html }}のロゴ -

{{ sponsor.name }}

+ {% comment %} {{ sponsor.name | strip_html }}のロゴ {% endcomment %} +

{{ sponsor.name }}

{% endfor %}
@@ -29,9 +29,9 @@

シルバースポンサー
{% for sponsor in silver_sponsors %} -
- {{ sponsor.name | strip_html }}のロゴ -

{{ sponsor.name }}

+
+ {% comment %} {{ sponsor.name | strip_html }}のロゴ {% endcomment %} +

{{ sponsor.name }}

{% endfor %}
@@ -42,9 +42,9 @@

ブロンズスポンサー
{% for sponsor in bronze_sponsors %} -
- {{ sponsor.name | strip_html }}のロゴ -

{{ sponsor.name }}

+
+ {% comment %} {{ sponsor.name | strip_html }}のロゴ {% endcomment %} +

{{ sponsor.name }}

{% endfor %}
@@ -55,9 +55,9 @@

インカインドスポンサ
{% for sponsor in inkind_sponsors %} -
- {{ sponsor.name | strip_html }}のロゴ -

{{ sponsor.name }}

+
+ {% comment %} {{ sponsor.name | strip_html }}のロゴ {% endcomment %} +

{{ sponsor.name }}

{% endfor %}
From 90e3d791b97230032dac1b981794694fef5bf869 Mon Sep 17 00:00:00 2001 From: Fukusan64 Date: Sun, 24 Aug 2025 19:13:24 +0900 Subject: [PATCH 5/9] =?UTF-8?q?YassLab=E6=A0=AA=E5=BC=8F=E4=BC=9A=E7=A4=BE?= =?UTF-8?q?=E3=81=AE=E3=81=82=E3=81=A8=E3=81=AB'Doorkeeper'=E3=81=AE?= =?UTF-8?q?=E5=90=8D=E7=A7=B0=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _data/sponsors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/sponsors.yml b/_data/sponsors.yml index 5abc0041..0779b2d9 100644 --- a/_data/sponsors.yml +++ b/_data/sponsors.yml @@ -55,7 +55,7 @@ message: - id: yasslab - name: "YassLab株式会社" + name: YassLab株式会社(Doorkeeper) logo: link: type: inkind From c016ea50b5bed9e347c1a59f5c85c0651a9394d0 Mon Sep 17 00:00:00 2001 From: Fukusan64 Date: Sun, 24 Aug 2025 19:16:10 +0900 Subject: [PATCH 6/9] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=81=AAplatinum=5Fspons?= =?UTF-8?q?ors=E3=81=AE=E5=AE=A3=E8=A8=80=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _includes/top/sections/sponsor.html | 1 - 1 file changed, 1 deletion(-) diff --git a/_includes/top/sections/sponsor.html b/_includes/top/sections/sponsor.html index a14abdaf..b95e62c3 100644 --- a/_includes/top/sections/sponsor.html +++ b/_includes/top/sections/sponsor.html @@ -1,4 +1,3 @@ -{% assign platinum_sponsors = site.data.sponsors | where: "type", "platinum" %} {% assign gold_sponsors = site.data.sponsors | where: "type", "gold" %} {% assign silver_sponsors = site.data.sponsors | where: "type", "silver" %} {% assign bronze_sponsors = site.data.sponsors | where: "type", "bronze" %} From 095ae18ca7785d07937681a6a964b8299199ec98 Mon Sep 17 00:00:00 2001 From: Fukusan64 Date: Sun, 24 Aug 2025 19:35:32 +0900 Subject: [PATCH 7/9] =?UTF-8?q?=E4=BC=81=E6=A5=AD=E6=A6=82=E8=A6=81?= =?UTF-8?q?=E3=82=92=E7=A2=BA=E8=AA=8D=E3=81=97YassLab=E3=81=A8=E6=A0=AA?= =?UTF-8?q?=E5=BC=8F=E4=BC=9A=E7=A4=BE=E3=81=AE=E9=96=93=E3=81=AB=E5=8D=8A?= =?UTF-8?q?=E8=A7=92=E3=82=B9=E3=83=9A=E3=83=BC=E3=82=B9=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _data/sponsors.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_data/sponsors.yml b/_data/sponsors.yml index 0779b2d9..e27108a1 100644 --- a/_data/sponsors.yml +++ b/_data/sponsors.yml @@ -55,7 +55,7 @@ message: - id: yasslab - name: YassLab株式会社(Doorkeeper) + name: YassLab 株式会社(Doorkeeper) logo: link: type: inkind From e9a9138dae32177d42448fe3291042b5b98b2ae4 Mon Sep 17 00:00:00 2001 From: Fukusan64 Date: Sun, 24 Aug 2025 19:58:56 +0900 Subject: [PATCH 8/9] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=81=AA"=E3=82=92?= =?UTF-8?q?=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- _data/sponsors.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/sponsors.yml b/_data/sponsors.yml index e27108a1..98a9b648 100644 --- a/_data/sponsors.yml +++ b/_data/sponsors.yml @@ -6,7 +6,7 @@ # message: スポンサー紹介文 - id: cygames - name: "株式会社Cygames" + name: 株式会社Cygames logo: link: type: gold @@ -20,7 +20,7 @@ message: - id: sunnyside_systems - name: "サニーサイドシステムズ合同会社" + name: サニーサイドシステムズ合同会社 logo: link: type: bronze From 774f1764c4963ca608f778bd038ceaeaa7b406e2 Mon Sep 17 00:00:00 2001 From: Fukusan Date: Mon, 25 Aug 2025 20:24:24 +0900 Subject: [PATCH 9/9] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=81=AA=E3=82=B9?= =?UTF-8?q?=E3=83=9A=E3=83=BC=E3=82=B9=E3=82=92=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Daisuke Yamamura --- _includes/top/sections/sponsor.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_includes/top/sections/sponsor.html b/_includes/top/sections/sponsor.html index b95e62c3..435d4a70 100644 --- a/_includes/top/sections/sponsor.html +++ b/_includes/top/sections/sponsor.html @@ -56,7 +56,7 @@

インカインドスポンサ {% for sponsor in inkind_sponsors %}
{% comment %} {{ sponsor.name | strip_html }}のロゴ {% endcomment %} -

{{ sponsor.name }}

+

{{ sponsor.name }}

{% endfor %}