Skip to content

Commit f1e6701

Browse files
authored
Update index.html
1 parent 7bc86b0 commit f1e6701

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

index.html

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,22 @@ <h3 class="post-list__title">{{ session.j-title }}</h3>
143143
<div class="row justify-content-md-center">
144144
<div class="col-12 col-md-8">
145145
<h2 class="heading__01">WORK SHOP</h2>
146-
<h3 class="heading__02">COMING SOON</h3>
146+
<div class="row post-list">
147+
{% for workshop in site.workshop %}
148+
{% if workshop.layout == "archive" %}
149+
{% else %}
150+
<div class="col-6 col-md-3">
151+
<article class="post-list__item">
152+
<div class="post-list__thumbnail"><a href="{{ site.url }}{{ workshop.url }}"><img src="img/{{ workshop.thumbnail }}" alt="{{ workshop.j-title }}のイメージ"></a></div>
153+
<div class="post-list__content">
154+
<h3 class="post-list__title">{{ workshop.j-title }}</h3>
155+
<p class="post-list__time">{{workshop.time-schedule}}</p>
156+
</div>
157+
<div class="post-list__more"><a class="btn btn__white btn__xl" href="{{ site.url }}{{ workshop.url }}" role="button">more</a></div></article>
158+
</div>
159+
{% endif %}
160+
{% endfor %}
161+
</div>
147162
</div>
148163
</div>
149164
<div class="row post-list mt-5">

0 commit comments

Comments
 (0)