-
-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathclosed.html
More file actions
21 lines (19 loc) · 598 Bytes
/
closed.html
File metadata and controls
21 lines (19 loc) · 598 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
layout: default
permalink: /closed/
title: Closed Software Testing Conferences
---
<p>Conferences and workshops that have shut down or ended their annual conference series.</p>
<ul class="post-list">
{% for conference in site.data.closed %}
<li>
<h2><a href="{{ conference.url }}">{{ conference.name }}</a></h2>
<p>
Location: {{ conference.location }}<br>
First held: {{ conference.first_date }}<br>
Last held: {{ conference.last_date }}
{% if conference.status != nil %}<br>Status: {{ conference.status }}{% endif %}
</p>
</li>
{% endfor %}
</ul>