forked from TestingConferences/testingconferences.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
17 lines (16 loc) · 618 Bytes
/
index.html
File metadata and controls
17 lines (16 loc) · 618 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"></i> {{ current.dates }} <i class="fa fa-map-marker"></i> {{ current.location }}
{% if current.twitter != nil %}<a href="https://www.twitter.com/{{current.twitter}}"><i class="fa fa-twitter"></i>{{current.twitter}}</a>{% endif %}
{% if current.status != nil %}<i class="fa fa-bell"></i> {{current.status}}{% endif %}
</li>
{% endfor %}
</ul>
</div>