23 lines
632 B
HTML
23 lines
632 B
HTML
{{ define "main" }}
|
|
<section class="section">
|
|
<article>
|
|
<div class="content portfolio">
|
|
<h1>{{ .Title }}</h1>
|
|
<div id="portfolio-gallery">
|
|
{{ range .Params.images }}
|
|
{{ $img := $.Page.Resources.GetMatch . }}
|
|
<a href="{{ $img.RelPermalink }}">
|
|
<img src="{{ $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 }}
|