ref: e03f27ccf852a07b868bd87824129b41c2b42ebc
parent: 3027b15176bd0906de460f9fd8fe91c6c3a73472
author: digitalcraftsman <[email protected]>
date: Fri Nov 20 13:38:56 EST 2015
Add shortcode for github gists
--- a/tpl/template_embedded.go
+++ b/tpl/template_embedded.go
@@ -46,6 +46,7 @@
t.AddInternalShortcode("vimeo.html", `<div style="position: relative; padding-bottom: 56.25%; padding-top: 30px; height: 0; overflow: hidden;">
<iframe src="//player.vimeo.com/video/{{ index .Params 0 }}" style="position: absolute; top: 0; left: 0; width: 100%; height: 100%;" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
</div>`)
+ t.AddInternalShortcode("gist.html", `<script src="https://gist.github.com/{{ index .Params 0 }}/{{ index .Params 1 }}.js"></script>`)
}
func (t *GoHTMLTemplate) EmbedTemplates() {