forked from nicolas-van/bootstrap-4-github-pages
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchangelog.html
42 lines (41 loc) · 1.38 KB
/
changelog.html
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
40
41
42
---
layout: page
title: Changelog
---
<ul class="list-unstyled">
{% for clEntry in site.data.changelog %}
<li id="{{ clEntry.date }}" class="mb-4">
<h2 class="h5">
<a href="#{{ clEntry.date }}" title="{{ clEntry.date | date: '%B %d, %Y' }}">
{{ clEntry.date | date: '%B %d, %Y' }}
</a>
</h2>
<ul>
{% if clEntry.added.size > 0 %}
<li>Added</li>
<ul class="small">
{% for item in clEntry.added %}
<li>{{ item }}</li>
{% endfor %}
</ul>
{% endif %}
{% if clEntry.changed.size > 0 %}
<li>Changed</li>
<ul class="small">
{% for item in clEntry.changed %}
<li>{{ item }}</li>
{% endfor %}
</ul>
{% endif %}
{% if clEntry.fixed.size > 0 %}
<li>Fixed</li>
<ul class="small">
{% for item in clEntry.fixed %}
<li>{{ item }}</li>
{% endfor %}
</ul>
{% endif %}
</ul>
</li>
{% endfor %}
</ul>