-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (35 loc) · 1.1 KB
/
index.html
File metadata and controls
39 lines (35 loc) · 1.1 KB
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: default
title: DSF Board Meeting Minutes
---
<div class="page-header">
<h1>DSF Board Meeting Minutes</h1>
<p>Public meeting minutes from the Django Software Foundation Board of Directors.</p>
</div>
{% assign minutes = site.pages | sort: "name" | reverse %}
{% assign current_year = "" %}
{% for page in minutes %}
{% if page.name != "template.md" and page.name != "index.md" and page.name != "index.html" and page.dir contains "20" %}
{% assign year = page.name | slice: 0, 4 %}
{% if year != current_year %}
{% if current_year != "" %}
</ul>
</div>
{% endif %}
<div class="year-group">
<div class="year-label">{{ year }}</div>
<ul class="minutes-list">
{% assign current_year = year %}
{% endif %}
<li>
<a href="{{ site.baseurl }}{{ page.url }}">
<span class="minutes-date">{{ page.name | replace: ".md", "" }}</span>
<span class="minutes-arrow">→</span>
</a>
</li>
{% endif %}
{% endfor %}
{% if current_year != "" %}
</ul>
</div>
{% endif %}