hugo-theme-learn
hugo-theme-learn copied to clipboard
Embed iframe
Hi, thanks for the theme, it's pretty cool! Just one thing, I'm trying to embed an iframe pptx from the web office, but I cannot.
Only writing <iframe></iframe>
in learn theme's markdown is doesn't work, but it's easy to do the same thing.
For me, just make file at /rootofyourhugoblog/layout/shortcodes/myiframe.html
put them in myiframe.html
<script>
function resizeIframe(obj) {
obj.style.height = 1.05*obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>
<iframe width="100%" height="150" name="iframe" src="./{{ index .Params 0 }}"
frameborder="0"
scrolling="no"
onload="resizeIframe(this)">
</iframe>
Then write them in your markdown:
{{< myiframe the_url_your_want_put_in_iframe >}}
Then build the website: hugo server
, fin.
@WeiMXi's Solution worked for me perfectly. Thank you.