13 lines
368 B
HTML
13 lines
368 B
HTML
|
{{- $page := .page -}}
|
||
|
|
||
|
{{- $shouldShowTitle := .shouldShowTitle -}}
|
||
|
|
||
|
{{- $resource := $page.Resources.GetMatch .name -}}
|
||
|
{{- if not $resource }}
|
||
|
{{ errorf "No resource named '%s'. %s" .name .page.Permalink }}
|
||
|
{{ end -}}
|
||
|
|
||
|
{{- if eq $resource.ResourceType "image" -}}
|
||
|
{{ partial "page/figures/small-image.html" (merge . (dict "resource" $resource)) }}
|
||
|
{{- end -}}
|