Website/layouts/shortcodes/iframe.html

9 lines
248 B
HTML
Raw Permalink Normal View History

2024-02-28 21:48:26 +01:00
{{ $src := .Get "src" -}}
{{ $class := .Get "class" -}}
<div class="wrap-element{{ with $class }} {{ . }}{{ end }}">
2024-02-03 13:19:30 +01:00
<iframe class="wrapped-iframe"
2024-02-28 21:48:26 +01:00
{{ with $src }}src="{{ . }}"{{ end }}
2024-02-03 13:19:30 +01:00
frameborder="0" allowfullscreen>
</iframe>
</div>