2022-05-12 18:56:16 -07:00
|
|
|
{{- $type := "image" -}}
|
2022-06-29 17:54:51 -07:00
|
|
|
{{- $itemtype := "CreativeWork" -}}
|
2022-06-30 20:12:06 -07:00
|
|
|
{{- $itemtype2 := "ImageObject" -}}
|
|
|
|
{{- $itemprop := "mentions" -}}
|
2022-04-20 17:55:13 -07:00
|
|
|
{{- with .Get "type" -}}
|
2022-06-30 20:12:06 -07:00
|
|
|
{{- $type = . -}}
|
2022-04-20 17:55:13 -07:00
|
|
|
{{- end -}}
|
2022-06-29 17:54:51 -07:00
|
|
|
{{- with .Get "itemtype" -}}
|
2022-06-30 20:12:06 -07:00
|
|
|
{{- $itemtype = . -}}
|
2022-06-29 17:54:51 -07:00
|
|
|
{{- end -}}
|
2022-06-30 20:12:06 -07:00
|
|
|
{{- with .Get "itemtype2" -}}
|
|
|
|
{{- $itemtype2 = . -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- with .Get "itemprop" -}}
|
|
|
|
{{- $itemprop = . -}}
|
|
|
|
{{- end -}}
|
|
|
|
<hr />
|
2022-06-29 17:54:51 -07:00
|
|
|
<section
|
|
|
|
aria-label="{{ $type }}, caption, and transcript"
|
2022-06-30 20:12:06 -07:00
|
|
|
itemprop="{{ $itemprop }}" itemscope="" itemtype="https://schema.org/{{ $itemtype }} https://schema.org/{{ $itemtype2 }}"
|
2022-06-29 17:54:51 -07:00
|
|
|
id="{{ .Get "id" }}" tabindex="-1">
|
2022-04-20 17:55:13 -07:00
|
|
|
{{ .Inner | markdownify | safeHTML }}
|
2022-05-12 17:33:12 -07:00
|
|
|
</section>
|
2022-06-30 20:12:06 -07:00
|
|
|
<hr />
|