video player

This commit is contained in:
Mark Moser
2017-08-23 14:26:05 -05:00
parent 7d998e525c
commit a3c75b8d74
6 changed files with 20 additions and 9 deletions

View File

@ -7,10 +7,10 @@
---
<section>
<p>Here is a collection of old video projects I'm still proud of. I no longer seek out video production projects because I decided to focus on development. I hope you enjoy watching them as much as I did making them.</p>
<p>Here is a collection of old video projects I'm still proud of. I no longer seek out work in video production in an effort to narrow focus. I hope you enjoy watching them as much as I did making them.</p>
<p>
more videos can be found on
More videos can be found on
<a href="http://www.vimeo.com/mmoser">vimeo</a>
and
<a href="http://www.youtube.com/user/ObleyWan">youtube</a>
@ -18,9 +18,14 @@
{{#each videos }}
<section>
<h2>{{title}}</h2>
<p>{{{note}}}</p>
<br />
<video src="/video/{{file}}" controls poster="/video/{{poster}}"></video>
<div class="video-player">
<h2>{{title}}</h2>
<video src="/video/{{file}}" controls poster="/video/{{poster}}"></video>
{{#if note }}<p>{{{note}}}</p>{{/if}}
{{#if role }}<p> My Role: {{role}}</p>{{/if}}
{{#if credit }}<p>{{{credit}}}</p>{{/if}}
</div>
</section>
{{/each}}