Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions videos.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
layout: default
permalink: /event-videos/
title: Free Video Recordings from Past Software Testing Conferences
---

<h1>Event Videos</h1>
<p>Many online conferences and workshops post their event videos and recordings online afterwards. When we can, we keep track of them so you don't have to.</p>

<ul class="post-list">
{% for past in site.data.past %}
{% if past.video_url != nil %}
<li>
<h2><a href="{{past.url}}">{{ past.name }}</a></h2>
<p>
<i class="fa fa-calendar"></i> {{ past.dates }} <i class="fa fa-map-marker"></i> {{ past.location }}
{% if past.twitter != nil %}<a href="https://www.twitter.com/{{past.twitter}}"><i
class="fa fa-twitter"></i>{{past.twitter}}</a>{% endif %}
<a href="{{ past.video_url }}"><i class="fa fa-video-camera"></i> Event
Videos</a>
</li>
{% endif %}
{% endfor %}
</ul>