Skip to content

Commit

Permalink
reports.html: Create report listing
Browse files Browse the repository at this point in the history
Closes coala#359
  • Loading branch information
jayvdb committed Aug 24, 2018
1 parent 9a72147 commit 37d1514
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions reports.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
title: coala GSoC project reports
---

<h1>{{ page.title }}</h1>

<h2>2018</h2>

<ul>
{% for report in site.reports %}
{% capture year %}{{ report.date | date: '%Y' }}{% endcapture %}
{% if year == '2018' %}
<li><a href="{{ report.url }}.html">{{ report.student }}</a>
{% endif %}
{% endfor %}
</ul>

<h2>2017</h2>

<ul>
{% for report in site.reports %}
{% capture year %}{{ report.date | date: '%Y' }}{% endcapture %}
{% if year == '2017' %}
<li><a href="{{ report.url }}.html">{{ report.student }}</a>
{% endif %}
{% endfor %}
</ul>

0 comments on commit 37d1514

Please sign in to comment.