artist-gallery-theme

Hugo theme made for websites with loads of images
Log | Files | Refs | README | LICENSE

list.html (612B)


      1 {{ define "main" }}
      2 <h1>{{ .Page.Title }}</h1>
      3 {{ .Content }}
      4 <div class="image-grid">
      5     {{ range sort .Data.Pages "Date" "desc" }}
      6         {{ if and (isset .Params "image") .Params.image }}
      7             <a href="{{ .Permalink }}" title="{{ .Title }}">
      8             {{ $image := .Page.Resources.GetMatch .Params.image }}
      9             {{ with $image }}
     10                 {{ $thumb := .Resize "400x" }}
     11                 <img src="{{ $thumb.RelPermalink }}" alt="{{ .Title }}" class="img-responsive">
     12 
     13             {{end}}
     14 	    <h2> {{ .Title }} </h2>
     15             </a>
     16         {{ end }}
     17     {{ end }}
     18 </div>
     19 {{ end }}
     20 
     21