Skip to content

Commit 32ddb68

Browse files
authored
Create index.html
1 parent 4a78a15 commit 32ddb68

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

_workshop/index.html

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
title: Workshop
3+
j-title : DojoCon Japan 2018ワークショップ一覧
4+
description: DojoCon Japan 2018におけるワークショップの一覧
5+
layout: archive
6+
---
7+
8+
<section id="workshop">
9+
<div class="container">
10+
<div class="row post-list">
11+
{% for workshop in site.workshop %}
12+
{% if workshop.layout == "archive" %}
13+
{% else %}
14+
<div class="col-6 col-md-3">
15+
<article class="post-list__item">
16+
<div class="post-list__thumbnail"><a href="{{ site.url }}{{ workshop.url }}"><img
17+
src="/img/{{ workshop.thumbnail }}" alt="{{workshop.speaker-name}}の写真"></a></div>
18+
<div class="post-list__content">
19+
<h3 class="post-list__title">{{ workshop.j-title }}</h3>
20+
<p class="post-list__time">{{workshop.time-schedule}}</p>
21+
<p class="post-list__speaker">{{ workshop.speaker-name }}</p>
22+
</div>
23+
<div class="post-list__more"><a class="btn btn__green btn__xl" href="{{ site.url }}{{ workshop.url }}"
24+
role="button">more</a></div>
25+
</article>
26+
</div>
27+
{% endif %}
28+
{% endfor %}
29+
</div>
30+
</div>
31+
</section>

0 commit comments

Comments
 (0)