-
-
Notifications
You must be signed in to change notification settings - Fork 243
Expand file tree
/
Copy pathpast.html
More file actions
19 lines (18 loc) · 824 Bytes
/
past.html
File metadata and controls
19 lines (18 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
layout: default
permalink: /past/
title: Past Software Testing Conferences
---
<ul class="post-list">
{% for past in site.data.past %}
<li>
<h2><a href="{{past.url}}">{{ past.name }}</a></h2>
<p>
<i class="fa fa-calendar" role="img" aria-label="Dates" title="Dates"></i> {{ past.dates }} <i class="fa fa-map-marker" role="img" aria-label="Location" title="Location"></i> {{ past.location }}
{% if past.twitter != nil %}<a href="https://www.twitter.com/{{past.twitter}}"><i
class="fa-brands fa-x-twitter" aria-hidden="true" title="X (Twitter)"></i>{{past.twitter}}</a>{% endif %}
{% if past.video_url != nil %}<a href="{{ past.video_url }}"><i class="fa fa-video-camera" aria-hidden="true" title="Event videos"></i> Event
Videos</a>{% endif %}
</li>
{% endfor %}
</ul>