Use https

The Hugo site uses HTTPS but the video link was HTTP, which made chrome block the video
This commit is contained in:
Diego Medina 2015-10-06 15:47:23 -04:00 committed by Anthony Fok
parent 17fb752279
commit ddd8c77938

View File

@ -1,4 +1,4 @@
<div class="video-container">
<iframe class="youtube-player" type="text/html" width="100%" height="auto" src="http://www.youtube.com/embed/{{ index .Params 0 }}" allowfullscreen frameborder="0">
<iframe class="youtube-player" type="text/html" width="100%" height="auto" src="https://www.youtube.com/embed/{{ index .Params 0 }}" allowfullscreen frameborder="0">
</iframe>
</div>