shithub: hugo

Download patch

ref: ddd8c77938e20ee4d43c98704197d9b63a903b32
parent: 17fb752279c3017c5bc11ceb9e113a3159317d9d
author: Diego Medina <[email protected]>
date: Tue Oct 6 11:47:23 EDT 2015

Use https

The Hugo site uses HTTPS but the video link was HTTP, which made chrome block the video

--- a/docs/layouts/shortcodes/youtube.html
+++ b/docs/layouts/shortcodes/youtube.html
@@ -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>