Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions _includes/nav.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<a href="/subscribe" {% if page.url == '/subscribe/' %}class='active'{% endif %}>Newsletter</a> |
<a href="/news" {% if page.url == '/news/' %}class='active'{% endif %}>Blog</a> |
<a href="/about" {% if page.url == '/about/' %}class='active'{% endif %}>About</a> |
<a href="/videos" {% if page.url == '/videos/' %}class='active'{% endif %}>Videos</a> |
<a href="/resources" {% if page.url == '/resources/' %}class='active'{% endif %}>Resources</a>
</ul>
</div>
36 changes: 36 additions & 0 deletions videos.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
---
layout: default
permalink: /videos/
title: Software Testing Conference Videos
---

<p>
This page highlights the 10 most recent past conferences in <a href="/past/">our archive</a> that include an
event video link. Use it to quickly find freely shared conference recordings, and let us know if we're missing one
by updating <a href="https://github.com/TestingConferences/testingconferences.github.io/blob/main/_data/past.yml">past.yml</a>.
</p>

{% assign video_conferences = site.data.past | where_exp: "conference", "conference.video_url" %}
{% assign current_year = "" %}

{% for conference in video_conferences limit: 10 %}
{% assign conference_year = conference.dates | split: ", " | last %}
{% if conference_year != current_year %}
{% assign current_year = conference_year %}
<h2>{{ current_year }}</h2>
<ul class="post-list">
{% endif %}
<li>
<h3><a href="{{ conference.url }}">{{ conference.name }}</a></h3>
<p>
<i class="fa fa-calendar"></i> {{ conference.dates }}
<br />
<a href="{{ conference.video_url }}"><i class="fa fa-video-camera"></i> Watch Event Videos</a>
</p>
</li>
{% assign next_conference = video_conferences[forloop.index] %}
{% assign next_year = next_conference.dates | split: ", " | last %}
{% if forloop.last or next_year != current_year %}
</ul>
{% endif %}
{% endfor %}
Loading