codePen.html 621 B

12345678910
  1. {{ $pen := .Get 0 }}
  2. {{ with .Site.Params.codePenUser }}
  3. <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%;">
  4. <div>
  5. <a href="//codepen.io/{{ . | lower }}/pen/{{ $pen }}">See the demo on codePen</a>
  6. </div>
  7. </iframe>
  8. {{ else }}
  9. <p class="site-error"><strong>Site error:</strong> The <code>codePenUser</code> param has not been set in <code>config.toml</code></p>
  10. {{ end }}