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

gallery.html « shortcodes « layouts - github.com/zwbetz-gh/cupper-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d1c7be05e0b4908c13926e621ae1142689331499 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{{ $command := .Get "command" }}
{{ $options := .Get "options" }}

{{ with .Page.Resources.ByType "image" }}
  {{ range . }}

    {{ $original := . }}
    {{ $new := "" }}

    {{ if eq $command "Fit" }}
      {{ $new = $original.Fit $options }}
    {{ else if eq $command "Fill" }}
      {{ $new = $original.Fill $options }}
    {{ else if eq $command "Resize" }}
      {{ $new = $original.Resize $options }}
    {{ else if eq $command "Original" }}
      {{ $new = $original }}
    {{ else }}
      {{ errorf "Invalid image processing command: Must be one of Fit, Fill, Resize, Original." }}
    {{ end }}

    <div class="gallery">
      <a href="{{ $original.RelPermalink }}" class="img-link">
        <img src="{{ $new.RelPermalink }}">
      </a>
    </div>

  {{ end }}
{{ end }}