1
Fork 0
theorangeone.net-legacy/layouts/shortcodes/iframe.html

11 lines
335 B
HTML
Raw Normal View History

2018-01-21 21:45:32 +00:00
{{ if .Inner }}
<figure>
<iframe src='{{ .Get "src" }}' class='{{ .Get "class" }}'></iframe>
<figcaption>
<small>{{ .Inner }} <a href='{{ .Get "src" }}' class="d-inline-block">View Full</a></small>
</figcaption>
</figure>
{{ else }}
<iframe src='{{ .Get "src" }}' class='{{ .Get "class" }}'></iframe>
{{ end }}