cupper-hugo-theme/layouts/shortcodes/codePen.html

11 lines
621 B
HTML
Raw Normal View History

2019-02-14 23:16:53 +01:00
{{ $pen := .Get 0 }}
{{ with .Site.Params.codePenUser }}
<iframe height="300" scrolling="no" title="code demonstration with codePen" src="//codepen.io/{{ . | lower }}/embed/{{ $pen }}/?height=265&theme-id=dark&default-tab=result,result&embed-version=2" frameborder="no" allowtransparency="true" allowfullscreen="true" style="width: 100%;">
2017-11-02 16:39:45 +01:00
<div>
2019-02-14 23:16:53 +01:00
<a href="//codepen.io/{{ . | lower }}/pen/{{ $pen }}">See the demo on codePen</a>
2017-11-02 16:39:45 +01:00
</div>
</iframe>
{{ else }}
<p class="site-error"><strong>Site error:</strong> The <code>codePenUser</code> param has not been set in <code>config.toml</code></p>
{{ end }}