<figure class="tsc-image" style="{{- with .Get "width" -}}max-width: min(90%, {{.}}px);{{- end -}}">
    {{ with .Get "href" }}
    <a href="{{ . }}">
    {{ end }}
        <img
            {{ with .Get "alt" }}alt="{{ . }}"{{ end }}
            {{- $filename := .Get "src" }}
            {{ $resource := .Page.Resources.Get $filename -}}
            {{ if not $resource }}
            {{ $resource = resources.GetMatch $filename }}
            {{ end }}
            src="{{ $resource.RelPermalink }}"
        >
    {{ with .Get "href" }}
    </a>
    {{ end }}
    {{ with .Get "credits" }}
    <div class="credits">Foto: {{ . }}</div>
    {{ end }}
    {{ with .Get "caption" }}
    <figcaption>
        {{ . }}
    </figcaption>
    {{ end }}
</figure>