Welcome to mirror list, hosted at ThFree Co, Russian Federation.

imgresize.html « shortcodes « layouts - github.com/eddiewebb/hugo-resume.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 196c64be13dcd2df3b7c93c20d254fe0bbb8d611 (plain)
1
2
3
4
5
6
7
{{ $original := .Page.Resources.GetMatch (.Get 0) }}
{{ $options := .Get 1 }}
{{ .Scratch.Set "image" ($original.Fit $options) }}
{{ $image := .Scratch.Get "image" }}
{{ $title := .Get 2 }}
<img class="mb-5 mt-0" src="{{ $image.RelPermalink }}" width="{{ $image.Width }}" height="{{ $image.Height }}" alt="{{ $title }}">