|
| 1 | +--- |
| 2 | +layout: default |
| 3 | +permalink: /sponsorship/list/ |
| 4 | +title: スポンサーのご紹介 |
| 5 | +--- |
| 6 | +{% include navbar.html %} |
| 7 | + |
| 8 | +{% assign gold_sponsors = site.data.sponsors | where: "type", "gold" %} |
| 9 | +{% assign silver_sponsors = site.data.sponsors | where: "type", "silver" %} |
| 10 | +{% assign bronze_sponsors = site.data.sponsors | where: "type", "bronze" %} |
| 11 | +{% assign inkind_sponsors = site.data.sponsors | where: "type", "inkind" %} |
| 12 | +{% assign individual_sponsors = site.data.sponsors | where: "type", "individual" %} |
| 13 | + |
| 14 | +<h2 class="text-4xl text-center mb-8 mt-30 xl:mt-15"> |
| 15 | + スポンサーのご紹介 |
| 16 | + <span class="block mt-5 text-2xl">SPONSORS</span> |
| 17 | +</h2> |
| 18 | + |
| 19 | +<p class="text-center mb-10 break-keep wrap-anywhere text-sm sm:text-base"> |
| 20 | + DojoCon Japan 2025は、スポンサーのご協力により開催されています。<br>協賛くださいました皆様ありがとうございます。 |
| 21 | +</p> |
| 22 | + |
| 23 | +<h3 class="text-2xl mt-15 mx-8 text-center mb-4">ゴールドスポンサー |
| 24 | + <span class="block text-base mt-1">GOLD SPONSOR</span> |
| 25 | +</h3> |
| 26 | +<div class="flex justify-center flex-wrap gap-x-8 px-8 max-w-3xl w-full mx-auto"> |
| 27 | + {% for sponsor in gold_sponsors %} |
| 28 | + <div class="w-full flex flex-col mb-5"> |
| 29 | + {% if sponsor.link %} |
| 30 | + <a |
| 31 | + class="flex-grow w-full flex items-center justify-center transition-all duration-200 hover:opacity-70 hover:scale-105 cursor-pointer" |
| 32 | + style="transform-style: preserve-3d;" |
| 33 | + href="{{ sponsor.link }}" |
| 34 | + target="_blank" |
| 35 | + rel="noopener noreferrer" |
| 36 | + > |
| 37 | + <img class="w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | strip_html }}のロゴ"> |
| 38 | + </a> |
| 39 | + {% else %} |
| 40 | + <div class="flex-grow w-full flex items-center justify-center"> |
| 41 | + <img class="w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | strip_html }}のロゴ"> |
| 42 | + </div> |
| 43 | + {% endif %} |
| 44 | + <p class="w-full mb-3 text-center break-keep">{{ sponsor.name }}</p> |
| 45 | + <p class="w-full text-gray-600 break-keep wrap-anywhere">{{ sponsor.message }}</p> |
| 46 | + </div> |
| 47 | + {% endfor %} |
| 48 | +</div> |
| 49 | + |
| 50 | +<h3 class="text-2xl mt-15 mx-8 text-center mb-4">シルバースポンサー |
| 51 | + <span class="block text-base mt-1">SILVER SPONSOR</span> |
| 52 | +</h3> |
| 53 | + |
| 54 | +<div class="flex justify-center flex-wrap gap-x-8 px-8 max-w-3xl mx-auto"> |
| 55 | + {% for sponsor in silver_sponsors %} |
| 56 | + <div class="flex flex-col mb-5"> |
| 57 | + {% if sponsor.link %} |
| 58 | + <a |
| 59 | + class="flex-grow w-full flex items-center justify-center transition-all duration-200 hover:opacity-70 hover:scale-105 cursor-pointer" |
| 60 | + style="transform-style: preserve-3d;" |
| 61 | + href="{{ sponsor.link }}" |
| 62 | + target="_blank" |
| 63 | + rel="noopener noreferrer" |
| 64 | + > |
| 65 | + <img class="max-w-[{{500 | times:sponsor.logo_scale | round}}px] w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | strip_html }}のロゴ"> |
| 66 | + </a> |
| 67 | + {% else %} |
| 68 | + <div class="flex-grow w-full flex items-center justify-center"> |
| 69 | + <img class="w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | strip_html }}のロゴ"> |
| 70 | + </div> |
| 71 | + {% endif %} |
| 72 | + <p class="w-full mb-3 text-center break-keep">{{ sponsor.name }}</p> |
| 73 | + <p class="w-full text-gray-600 break-keep wrap-anywhere">{{ sponsor.message }}</p> |
| 74 | + </div> |
| 75 | + {% endfor %} |
| 76 | +</div> |
| 77 | + |
| 78 | +<h3 class="text-2xl mt-15 mx-8 text-center mb-4">ブロンズスポンサー |
| 79 | + <span class="block text-base mt-1">BRONZE SPONSOR</span> |
| 80 | +</h3> |
| 81 | + |
| 82 | +<div class="grid grid-cols-1 lg:grid-cols-2 gap-x-8 gap-y-10 px-8 max-w-3xl w-7/10 mx-auto"> |
| 83 | + {% for sponsor in bronze_sponsors %} |
| 84 | + <div class="flex flex-col mb-5"> |
| 85 | + {% if sponsor.link %} |
| 86 | + <a |
| 87 | + class="w-full h-auto lg:h-96 flex-grow-0 flex items-center justify-center transition-all duration-200 hover:opacity-70 hover:scale-105 cursor-pointer" |
| 88 | + style="transform-style: preserve-3d;" |
| 89 | + href="{{ sponsor.link }}" |
| 90 | + target="_blank" |
| 91 | + rel="noopener noreferrer" |
| 92 | + > |
| 93 | + <img class="max-w-[{{300 | times:sponsor.logo_scale | round}}px] w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | strip_html }}のロゴ"> |
| 94 | + </a> |
| 95 | + {% else %} |
| 96 | + <div class="w-full h-auto lg:h-96 flex-grow-0 flex items-center justify-center"> |
| 97 | + <img class="w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | strip_html }}のロゴ"> |
| 98 | + </div> |
| 99 | + {% endif %} |
| 100 | + <p class="w-full mb-3 text-center break-keep">{{ sponsor.name }}</p> |
| 101 | + <p class="w-full text-gray-600 break-keep wrap-anywhere">{{ sponsor.message }}</p> |
| 102 | + </div> |
| 103 | + {% endfor %} |
| 104 | +</div> |
| 105 | + |
| 106 | +<h3 class="text-2xl mt-15 mx-8 text-center mb-4">インカインドスポンサー |
| 107 | + <span class="block text-base mt-1">IN-KIND SPONSOR</span> |
| 108 | +</h3> |
| 109 | + |
| 110 | +<div class="flex justify-center flex-wrap gap-x-8 gap-y-10 px-8 max-w-3xl mx-auto mb-20"> |
| 111 | + {% for sponsor in inkind_sponsors %} |
| 112 | + <div class="flex flex-col"> |
| 113 | + {% if sponsor.link %} |
| 114 | + <a |
| 115 | + class="flex-grow w-full flex items-center justify-center transition-all duration-200 hover:opacity-70 hover:scale-105 cursor-pointer" |
| 116 | + style="transform-style: preserve-3d;" |
| 117 | + href="{{ sponsor.link }}" |
| 118 | + target="_blank" |
| 119 | + rel="noopener noreferrer" |
| 120 | + > |
| 121 | + <img class="max-w-[{{270 | times:sponsor.logo_scale | round}}px] w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | append: "(" | append: sponsor.tool | append:")" | strip_html }}のロゴ"> |
| 122 | + </a> |
| 123 | + {% else %} |
| 124 | + <div class="flex-grow w-full flex items-center justify-center"> |
| 125 | + <img class="w-full mx-auto mb-3" src="{{ sponsor.logo }}" alt="{{ sponsor.name | append: "(" | append: sponsor.tool | append:")" | strip_html }}のロゴ"> |
| 126 | + </div> |
| 127 | + {% endif %} |
| 128 | + <p class="w-full text-center break-keep">{{ sponsor.name }}</p> |
| 129 | + <p class="w-full text-center break-keep">{{ sponsor.tool }}<wbr>のご提供</p> |
| 130 | + </div> |
| 131 | + {% endfor %} |
| 132 | +</div> |
0 commit comments