-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideos.html
More file actions
25 lines (25 loc) · 892 Bytes
/
videos.html
File metadata and controls
25 lines (25 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
---
layout: default
title: Videos
n: 1
---
<h2>Videos</h2>
<p>
Here's a sampling of video moments captured throughout my career. From quirky one-minute shorts
demonstrating what not to do to 1-hour long technical deep dives showing my versitility as a
storyteller, and educator. I wrote and directed the shorts that I don't appear in. I'm most proud
of my appearance on the <a href="https://www.youtube.com/watch?v=Er4YpC0RkyA">Alexa Dojo</a>, where
I was able to use my Japanese skills.
</p>
<hr /><br />
<ul class="video-list">
{% for video in site.data.video-works %}
<li>
<div>
<a href="{{ video.url }}"><img height="180" width="240" src="{{ video.thumbnail }}" /></a>
<a href="{{ video.url }}">{{ video.title }}</a>
<p >{{ video.publication_date }} - {{ video.description }}</p>
</div>
</li>
{% endfor %}
</ul>