Add shortcode for youtube

This commit is contained in:
digitalcraftsman 2015-11-20 18:31:37 +01:00 committed by Bjørn Erik Pedersen
parent cc3f52b9c1
commit 4424288d9b

View file

@ -42,6 +42,7 @@ func (t *GoHTMLTemplate) EmbedShortcodes() {
</figure>
<!-- image -->`)
t.AddInternalShortcode("speakerdeck.html", "<script async class='speakerdeck-embed' data-id='{{ index .Params 0 }}' data-ratio='1.33333333333333' src='https://speakerdeck.com/assets/embed.js'></script>")
t.AddInternalShortcode("youtube.html", `<div style="position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;"><iframe class="youtube-player" type="text/html" src="https://www.youtube.com/embed/{{ index .Params 0 }}" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" allowfullscreen frameborder="0"></iframe></div>`)
}
func (t *GoHTMLTemplate) EmbedTemplates() {