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

25 lines
832 B
HTML
Raw Normal View History

2020-07-05 11:23:13 +02:00
{{ define "main" }}
<section class="section">
<article>
2020-08-15 19:00:29 +02:00
<div class="content portfolio">
<h1>{{ .Title }}</h1>
2020-12-06 16:38:41 +01:00
<div id="portfolio-gallery">
2020-12-06 17:08:33 +01:00
{{ range $index, $element := .Params.images }}
{{ $img := $.Page.Resources.GetMatch $element }}
{{ $res_img := $img.Fill (cond (eq $index 0) "1920x1080" "640x360") }}
2020-12-06 16:38:41 +01:00
<a href="{{ $img.RelPermalink }}">
2020-12-06 17:08:33 +01:00
<img src="{{ $res_img.RelPermalink }}" alt="">
2020-12-06 16:38:41 +01:00
</a>
2020-08-15 19:00:29 +02:00
{{ end }}
2020-12-06 16:38:41 +01:00
</div>
2020-07-05 11:23:13 +02:00
{{ .Content }}
</div>
</article>
</section>
2020-12-06 16:38:41 +01:00
<script src="https://cdn.jsdelivr.net/npm/lightgallery.js@1.4.0/dist/js/lightgallery.min.js"></script>
2020-12-06 17:16:09 +01:00
<script src="https://cdn.jsdelivr.net/npm/lg-zoom.js@1.3.0/dist/lg-zoom.min.js"></script>
2020-12-06 16:38:41 +01:00
<script>
lightGallery(document.getElementById('portfolio-gallery'));
</script>
2020-07-05 11:23:13 +02:00
{{ end }}