Skip to content

Commit

Permalink
懇親会募集とスポンサーリンク変更対応
Browse files Browse the repository at this point in the history
  • Loading branch information
jun1waka committed Sep 5, 2024
1 parent 0d62e89 commit 9162f7d
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _includes/navbar.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<a class="nav-item nav-link active" href="/#overview">開催概要</a>
<a class="nav-item nav-link active" href="/#news">お知らせ</a>
<!-- <a class="nav-item nav-link active" href="/#live">ライブ配信</a> -->
<a class="nav-item nav-link active" href="/#sponsors">スポンサー</a>
<a class="nav-item nav-link active" href="/posts/sponsors/">スポンサー</a>
<!-- <a class="nav-item nav-link active" href="/#staff">スタッフ</a> -->
<!--<a class="nav-item nav-link active" href="/timetable">タイムテーブル</a>-->
<a class="nav-item nav-link active" href="/sessions">セッション</a>
Expand Down
36 changes: 35 additions & 1 deletion _posts/2024-08-17-sponsor.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,41 @@ permalink: /posts/sponsors/
</a>
<p class="name">{{ sponsor.name }}</p>
<p class="message">{{ sponsor.message }}</p>
</li>
</li>
{% endfor %}
</ul>
</div>
{% endif %}

{% if inkind_sponsors != empty %}
<div id="in-kind-sponsors" class="sponsors-container">
<h3>In-kind Sponsor</h3>
<ul>
{% for sponsor in inkind_sponsors %}
<li id="{{ sponsor.id }}">
<a href="{{ sponsor.link }}" target="_blank">
<img src="/img/{{ site.year }}/sponsor/{{ sponsor.logo }}" alt="{{ sponsor.name }}" />
</a>
<p class="name">{{ sponsor.name }}</p>
<p class="message">{{ sponsor.message }}</p>
</li>
{% endfor %}
</ul>
</div>
{% endif %}

{% if individual_sponsors != empty %}
<div id="individual-sponsors" class="sponsors-container">
<h3>Individual Sponsor</h3>
<ul>
{% for sponsor in individual_sponsors %}
<li id="{{ sponsor.id }}">
<a href="{{ sponsor.link }}" target="_blank">
<img src="/img/{{ site.year }}/sponsor/{{ sponsor.logo }}" alt="{{ sponsor.name }}" />
</a>
<p class="name">{{ sponsor.name }}</p>
<p class="message">{{ sponsor.message }}</p>
</li>
{% endfor %}
</ul>
</div>
Expand Down
16 changes: 16 additions & 0 deletions _posts/2024-09-05-social-gathering-lt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: post
title: "懇親会でのLT登壇者の募集"
date: 2024-09-05 09:00:02 +09:00
thumbnail: "/img/2024/post/social-gathering-lt.jpg"
categories: news
description: "DojoCon Japan 2024の夜、懇親会でのLT登壇者を募集します。"
permalink: /posts/social-gathering-lt/
---

今回も、DojoCon Japan 2024 懇親会で、ライトニングトーク(LT)を開催します。
CoderDojoに関する話題を5分間にまとめて発表してみませんか?

<div class='entry'>
<a href="https://dojocon-japan.doorkeeper.jp/events/177350" class="button" rel="noopener" target="_blank">参加申し込みする</a>
</div>
16 changes: 16 additions & 0 deletions _posts/2024-09-05-social-gathering.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
layout: post
title: "DojoCon Japan 2024 の夜は懇親会"
date: 2024-09-05 09:00:01 +09:00
thumbnail: "/img/2024/post/social-gathering.jpg"
categories: news
description: "DojoCon Japan 2024の夜、会場併設のカフェテラスで、懇親会を行います。"
permalink: /posts/social-gathering/
---

DojoCon Japan 2024の夜、会場併設(同じフロア内)のカフェテラスで、懇親会を行います。
全国から集まった参加者同士、交流を深めあいましょう。

<div class='entry'>
<a href="https://dojocon-japan.doorkeeper.jp/events/177349" class="button" rel="noopener" target="_blank">参加申し込みする</a>
</div>
4 changes: 3 additions & 1 deletion _sass/pages/sponsors.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
#sponsors {
#gold-sponsors,
#silver-sponsors,
#bronze-sponsors {
#bronze-sponsors,
#in-kind-sponsors,
#individual-sponsors, {
h3 {
text-align: center;
margin-top: 200px;
Expand Down
Binary file added img/2024/post/social-gathering-lt.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/2024/post/social-gathering.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 9162f7d

Please sign in to comment.