9 lines
295 B
HTML
9 lines
295 B
HTML
{{ $imagename := (.Get 0) }}
|
|
{{ $options := .Get 1 }}
|
|
{{ with .Site.GetPage "section" "media" }}
|
|
{{ $original := .Resources.GetByPrefix $imagename }}
|
|
{{ with ($original.Resize $options) }}
|
|
<img src="{{ .RelPermalink }}" width="{{ .Width }}" height="{{ .Height }}">
|
|
{{ end }}
|
|
{{ end }}
|