-
-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathindex.html
More file actions
17 lines (16 loc) · 610 Bytes
/
index.html
File metadata and controls
17 lines (16 loc) · 610 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
layout: default
---
<div class="home">
<ul class="post-list">
{% for current in site.data.current %}
<li>
<h2><a href="{{current.url}}">{{ current.name }}</a></h2>
<p>
<i class="fa fa-calendar" role="img" aria-label="Dates" title="Dates"></i> {{ current.dates }}
<i class="fa fa-map-marker" role="img" aria-label="Location" title="Location"></i> {{ current.location }}
{% if current.status != nil %}<i class="fa fa-bell" role="img" aria-label="Status" title="Status"></i> {{current.status}}{% endif %}
</li>
{% endfor %}
</ul>
</div>