Skip to content

WIP. Event videos list. Now need to work on layout #670

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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>