Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/azmelanar/hugo-theme-pixyll.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkshcherban <k.scherban@gmail.com>2014-11-27 23:08:22 +0300
committerkshcherban <k.scherban@gmail.com>2014-11-27 23:08:22 +0300
commit1e7b7c849b94268ebd4c47afeae22f8b36d0fcc9 (patch)
treee22b0b5bc7d40fe85ddfee8b3887081b758b3ce6
parent507c99068839433c938b5bef71605fb50a0f52ed (diff)
Corrected youtube src link to support https
-rw-r--r--layouts/shortcodes/youtube.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/shortcodes/youtube.html b/layouts/shortcodes/youtube.html
index 08ad2a5..e6889bf 100644
--- a/layouts/shortcodes/youtube.html
+++ b/layouts/shortcodes/youtube.html
@@ -1,6 +1,6 @@
<div class="embed video-player">
<iframe class="youtube-player" type="text/html" width="640" height="385"
- src="http://www.youtube.com/embed/{{ index .Params 0 }}" allowfullscreen
+ src="//www.youtube.com/embed/{{ index .Params 0 }}" allowfullscreen
frameborder="0"/>
</iframe>
</div>