Skip to content

WORKSHOPページの追加 #51

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

Merged
merged 6 commits into from
Aug 13, 2018
Merged
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
17 changes: 17 additions & 0 deletions _layouts/workshop.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{% include header.html %}
<article class="entry mb-5">
<div class="container">
<div class="row justify-content-md-center">
<div class="col-12 col-md-8">
<header class="entry__header">
<h2 class="entry__title">{{page.j-title}}</h2>
<p class="entry__time">[ {{page.time-schedule}} ]</p>
</header>
<div class="entry__content">
{{content}}
</div>
</div>
</div>
</div>
</article>
{% include footer.html %}
31 changes: 31 additions & 0 deletions _workshop/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
title: Workshop
j-title : DojoCon Japan 2018ワークショップ一覧
description: DojoCon Japan 2018におけるワークショップの一覧
layout: archive
---

<section id="workshop">
<div class="container">
<div class="row post-list">
{% for workshop in site.workshop %}
{% if workshop.layout == "archive" %}
{% else %}
<div class="col-6 col-md-3">
<article class="post-list__item">
<div class="post-list__thumbnail"><a href="{{ site.url }}{{ workshop.url }}"><img
src="/img/{{ workshop.thumbnail }}" alt="{{workshop.speaker-name}}の写真"></a></div>
<div class="post-list__content">
<h3 class="post-list__title">{{ workshop.j-title }}</h3>
<p class="post-list__time">{{workshop.time-schedule}}</p>
<p class="post-list__speaker">{{ workshop.speaker-name }}</p>
</div>
<div class="post-list__more"><a class="btn btn__green btn__xl" href="{{ site.url }}{{ workshop.url }}"
role="button">more</a></div>
</article>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</section>
8 changes: 8 additions & 0 deletions _workshop/mob-programming.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
title: Workshop
j-title : モブプログラミングで体験する Scratch 3.0 + micro:bit 連携機能
description: モブプログラミングで、βリリースとなったばかりの Scratch 3.0 と小型マイコンボードの micro:bit との連携機能を体験するワークショップです。モブプログラミングとは、PCを操作する1人のドライバー役を順番に交代しながら、ナビゲーター役のそれ以外の全員がアドバイスをしたり、手順を教えたりして、みんなで助け合いながらタスクを進めていく開発手法です。前提とする知識は全く必要なし、PCの操作ができれば、どなたでもご参加いただけます。
thumbnail : mobpro.png
time-schedule:
---
モブプログラミングで、βリリースとなったばかりの Scratch 3.0 と小型マイコンボードの micro:bit との連携機能を体験するワークショップです。モブプログラミングとは、PCを操作する1人のドライバー役を順番に交代しながら、ナビゲーター役のそれ以外の全員がアドバイスをしたり、手順を教えたりして、みんなで助け合いながらタスクを進めていく開発手法です。前提とする知識は全く必要なし、PCの操作ができれば、どなたでもご参加いただけます。
Binary file added img/mobpro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 16 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,22 @@ <h3 class="post-list__title">{{ session.j-title }}</h3>
<div class="row justify-content-md-center">
<div class="col-12 col-md-8">
<h2 class="heading__01">WORK SHOP</h2>
<h3 class="heading__02">COMING SOON</h3>
<div class="row post-list">
{% for workshop in site.workshop %}
{% if workshop.layout == "archive" %}
{% else %}
<div class="col-6 col-md-3">
<article class="post-list__item">
<div class="post-list__thumbnail"><a href="{{ site.url }}{{ workshop.url }}"><img src="img/{{ workshop.thumbnail }}" alt="{{ workshop.j-title }}のイメージ"></a></div>
<div class="post-list__content">
<h3 class="post-list__title">{{ workshop.j-title }}</h3>
<p class="post-list__time">{{workshop.time-schedule}}</p>
</div>
<div class="post-list__more"><a class="btn btn__white btn__xl" href="{{ site.url }}{{ workshop.url }}" role="button">more</a></div></article>
</div>
{% endif %}
{% endfor %}
</div>
</div>
</div>
<div class="row post-list mt-5">
Expand Down