jefklakscodex/themes/jefklak-creative-portfolio/layouts/_default/_markup/render-image.html

14 lines
527 B
HTML

{{ $url := .Destination }}
<figure>
{{ if or (hasPrefix $url "/") (hasPrefix $url "https://") (hasPrefix $url "http://") }}
{{ else }}
{{ $url = (printf "%s%s" .Page.Permalink $url) }}
{{ end }}
<a href="{{ $url | absURL }}" class="lbox">
<img src="{{ $url | absURL }}" loading="lazy" class="img-responsive"{{ with .Text }} alt="{{ . }}"{{ end }}{{ with .Title}} title="{{ . }}" alt="{{ . }}"{{ end }} data-pagefind-index-attrs="title">
</a>
{{ with .Title }}
<figcaption>{{ . }}</figcaption>
{{ end }}
</figure>