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