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

23 lines
632 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-08-15 19:00:29 +02:00
{{ range .Params.images }}
{{ $img := $.Page.Resources.GetMatch . }}
2020-12-06 16:38:41 +01:00
<a href="{{ $img.RelPermalink }}">
<img src="{{ $img.RelPermalink }}" alt="">
</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>
<script>
lightGallery(document.getElementById('portfolio-gallery'));
</script>
2020-07-05 11:23:13 +02:00
{{ end }}