-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreports.html
More file actions
39 lines (37 loc) · 973 Bytes
/
reports.html
File metadata and controls
39 lines (37 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
layout: page
title: 過去の合宿の様子
hero_image: /image/banners/banner_report.png
hero_height: is-medium
---
<h3 class="block">
<span class="icon-text has-text-info-dark">
<span class="icon">
<i class="fas fa-image"></i>
</span>
<span>過去の合宿の様子</span>
</span>
</h3>
{% assign reports_by_date = site.reports | sort: "date" %}
{% for reports in reports_by_date reversed %}
<hr class="title-list"/>
<div class="title-list">
<div class="box">
<article class="media">
<div class="media-left">
<figure class="image is-64x64">
<img class="is-rounded" src="{{ reports.icon }}" alt="Image" />
</figure>
</div>
<div class="media-content">
<div class="content">
<p class="is-size-3">
<a href="{{ reports.url }}">{{ reports.title }}</a>
</p>
</div>
</div>
</article>
</div>
</div>
{% endfor %}
<hr class="title-list-last"/>