2022-05-13 01:56:16 +00:00
|
|
|
{{- $type := "image" -}}
|
2022-06-30 00:54:51 +00:00
|
|
|
{{- $itemtype := "CreativeWork" -}}
|
2022-07-01 03:12:06 +00:00
|
|
|
{{- $itemtype2 := "ImageObject" -}}
|
|
|
|
{{- $itemprop := "mentions" -}}
|
2022-04-21 00:55:13 +00:00
|
|
|
{{- with .Get "type" -}}
|
2022-07-01 03:12:06 +00:00
|
|
|
{{- $type = . -}}
|
2022-04-21 00:55:13 +00:00
|
|
|
{{- end -}}
|
2022-06-30 00:54:51 +00:00
|
|
|
{{- with .Get "itemtype" -}}
|
2022-07-01 03:12:06 +00:00
|
|
|
{{- $itemtype = . -}}
|
2022-06-30 00:54:51 +00:00
|
|
|
{{- end -}}
|
2022-07-01 03:12:06 +00:00
|
|
|
{{- with .Get "itemtype2" -}}
|
|
|
|
{{- $itemtype2 = . -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- with .Get "itemprop" -}}
|
|
|
|
{{- $itemprop = . -}}
|
|
|
|
{{- end -}}
|
|
|
|
<hr />
|
2022-06-30 00:54:51 +00:00
|
|
|
<section
|
|
|
|
aria-label="{{ $type }}, caption, and transcript"
|
2022-07-01 03:12:06 +00:00
|
|
|
itemprop="{{ $itemprop }}" itemscope="" itemtype="https://schema.org/{{ $itemtype }} https://schema.org/{{ $itemtype2 }}"
|
2022-06-30 00:54:51 +00:00
|
|
|
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>
|
2022-07-01 03:12:06 +00:00
|
|
|
<hr />
|