anna-uetwiller-architecture/themes/anna/layouts/portfolio/single.html

24 lines
742 B
HTML

{{ define "main" }}
<section class="section">
<article>
<div class="content portfolio">
<h1>{{ .Title }}</h1>
<div id="portfolio-gallery">
{{ range $index, $element := .Params.images }}
{{ $img := $.Page.Resources.GetMatch $element }}
{{ $res_img := $img.Fill (cond (eq $index 0) "1920x1080" "640x360") }}
<a href="{{ $img.RelPermalink }}">
<img src="{{ $res_img.RelPermalink }}" alt="">
</a>
{{ end }}
</div>
{{ .Content }}
</div>
</article>
</section>
<script src="https://cdn.jsdelivr.net/npm/lightgallery.js@1.4.0/dist/js/lightgallery.min.js"></script>
<script>
lightGallery(document.getElementById('portfolio-gallery'));
</script>
{{ end }}