Skip to content

Commit 37d1514

Browse files
committed
reports.html: Create report listing
Closes #359
1 parent 9a72147 commit 37d1514

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

reports.html

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
title: coala GSoC project reports
3+
---
4+
5+
<h1>{{ page.title }}</h1>
6+
7+
<h2>2018</h2>
8+
9+
<ul>
10+
{% for report in site.reports %}
11+
{% capture year %}{{ report.date | date: '%Y' }}{% endcapture %}
12+
{% if year == '2018' %}
13+
<li><a href="{{ report.url }}.html">{{ report.student }}</a>
14+
{% endif %}
15+
{% endfor %}
16+
</ul>
17+
18+
<h2>2017</h2>
19+
20+
<ul>
21+
{% for report in site.reports %}
22+
{% capture year %}{{ report.date | date: '%Y' }}{% endcapture %}
23+
{% if year == '2017' %}
24+
<li><a href="{{ report.url }}.html">{{ report.student }}</a>
25+
{% endif %}
26+
{% endfor %}
27+
</ul>

0 commit comments

Comments
 (0)