192.168.0.2/themes/neff/layouts/partials/img.html

25 lines
708 B
HTML

{{ $keep := .keepOriginal}}
{{- $title := .ctx.Name -}}
{{- with .ctx.Title -}}
{{- $title = . -}}
{{- end -}}
{{- $alt := $title -}}
{{- with .ctx.Params.alt -}}
{{- $alt = . -}}
{{- end -}}
{{ with .image }}
{{ if eq $keep true }}
<img alt="{{ $alt }}"
title="{{ $title }}"
class="original"
src="{{ .RelPermalink }}" />
{{ else }}
{{- $imageSm := .Fill "300x300 Top" -}}
{{- $imageMd := .Fill "500x500 Top" -}}
<img alt="{{ $alt }}"
title="{{ $title }}"
srcset="{{ $imageSm.RelPermalink }} 300w, {{ $imageMd.RelPermalink }} 500w"
sizes="(max-width: 500px) 300w, 500w"
src="{{ $imageMd.RelPermalink }}" />
{{ end }}
{{ end }}