1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-28 02:30:28 -04:00
jarv.is/layouts/shortcodes/iframe.html
2021-12-13 20:46:28 -05:00

12 lines
221 B
HTML

<div class="embed {{ .Name }}">
<iframe
src="{{ .Get "src" }}"
{{ with .Get "title" }}
title="{{ . }}"
{{ end }}
{{ with .Get "sandbox" }}
sandbox="{{ . }}"
{{ end }}>
</iframe>
</div>