Skip to content

Commit

Permalink
add a title to all videos
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHicks committed Nov 28, 2020
1 parent 3248802 commit bacb5b1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion content/kitchen-sink.md
Expand Up @@ -44,7 +44,7 @@ How about some inspiration?
>
> — Michael Scott
{{ youtube(id="LNCC6ZYI3SI") }}
{{ youtube(id="LNCC6ZYI3SI", title="You would never guess this is what a rhino sounds like.") }}

## Elm Code Sample

Expand Down
2 changes: 1 addition & 1 deletion content/talks/joyful-particles-in-elm.md
Expand Up @@ -6,4 +6,4 @@ date = 2019-02-21
event = "Oslo Elm Day"
+++

{{ youtube(id="goL7LeDHFi4") }}
{{ youtube(id="goL7LeDHFi4", title="Joyful Particles in Elm") }}
2 changes: 1 addition & 1 deletion content/talks/lets-make-nice-packages.md
Expand Up @@ -12,7 +12,7 @@ It’s about research.

No, wait, come back!

{{ youtube(id="yVn7FOQuwDM") }}
{{ youtube(id="yVn7FOQuwDM", title="Let's Make Nice Packages") }}

I really appreciate the opportunity to speak, and the conference was a blast! Elm Europe is worth attending, and I plan to be there myself next year if I can.

Expand Down
2 changes: 1 addition & 1 deletion content/talks/robot-buttons-from-mars.md
Expand Up @@ -6,4 +6,4 @@ date = 2019-04-26
event = "Elm in the Spring"
+++

{{ youtube(id="PDyWP-0H4Zo") }}
{{ youtube(id="PDyWP-0H4Zo", title="Robot Buttons from Mars") }}
4 changes: 2 additions & 2 deletions content/talks/the-state-of-elm-2017.md
Expand Up @@ -10,11 +10,11 @@ I gave this talk twice.
The first was at Elm Europe.
I think this turned out better; I had prepared the talk expecting to fit into twenty minutes.

{{ youtube(id="BAtql6ZbvpU") }}
{{ youtube(id="BAtql6ZbvpU", title="The State of Elm 2017") }}

I also gave it at the first Olso Elm Day the following Saturday.
This talk slot was significantly longer.
I had a lot more graphs to show, but the talk didn't feel as tight to me.
If you want additional detail, this might be the one for you.

{{ youtube(id="NKl0dtSe8rs") }}
{{ youtube(id="NKl0dtSe8rs", title="The State of Elm 2017 (Extended Edition)") }}
2 changes: 1 addition & 1 deletion templates/shortcodes/youtube.html
@@ -1,5 +1,5 @@
<figure class="youtube-embed">
<div>
<iframe src="https://www.youtube-nocookie.com/embed/{{ id }}" webkitallowfullscreen mozallowfullscreen allowfullscreen frameborder=0></iframe>
<iframe src="https://www.youtube-nocookie.com/embed/{{ id }}" title="{{ title }}" webkitallowfullscreen mozallowfullscreen allowfullscreen frameborder=0></iframe>
</div>
</figure>

0 comments on commit bacb5b1

Please sign in to comment.