Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update unintelligible expressions #44

Open
wants to merge 2 commits into
base: gh-pages
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions _data/sitetext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,9 @@ ja: &DEFAULT_JA
- title: "配信"
desc: "YouTubeの配信やツイートでコミュニティの様子を発信しています。<br>「 沼Lab 」で検索すると情報収集ができるよ!"
icon: fab fa-youtube
- title: "シェア"
desc: "ソースコードを共有することで問題を解決し、アイデアを実現し、その過程で互いに学び合うことができます。"
icon: fas fa-shapes
- title: "コミュニティ"
desc: "電話認証を行うか、マイクラとDiscordアカウントをリンクすると発言できるよ。<br>Discord招待リンクは自力で探して参加してね!"
icon: fab fa-discord
- title: "テストプレイ"
desc: "Minecraftサーバーで、視聴者参加型のテストプレイを開催します。<br>バグを見つけたらすみやかに報告してね!"
icon: fas fa-cube
- title: "マイクラサーバー"
desc: "いろんな人たちといっしょにMinecraftサーバーでコントリビュートしよう。<br>サーバーの詳細はDiscordサーバー内で!"
icon: fas fa-home
portfolio:
section: portfolio
closebutton: "閉じる"
Expand Down
37 changes: 37 additions & 0 deletions _includes/team.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!-- Team -->
<section class="page-section" id="{{ site.data.sitetext[site.locale].team.section | default: "team" }}">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">{{ site.data.sitetext[site.locale].team.title }}</h2>
<h3 class="section-subheading text-muted">{{ site.data.sitetext[site.locale].team.text }}</h3>
</div>
</div>
<div class="row">
{% for person in site.data.sitetext[site.locale].team.people %}
<div class="col-sm-6">
<div class="team-member">
<img class="mx-auto rounded-circle" src="{{ person.image }}" alt="">
<h4>{{ person.name }}</h4>
<p class="text-muted">{{ person.role }}</p>
<ul class="list-inline social-buttons">
{% for network in person.social %}
<li class="list-inline-item">
<a href="{{ network.url }}">
<i class="{{ network.icon }}"></i>
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
{% endfor %}
</div>
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<div class="large text-muted">{{ site.data.sitetext[site.locale].team.subtext | markdownify }}</div>
</div>
</div>
</div>
</section>
<!-- End Team -->