9 lines
409 B
HTML
9 lines
409 B
HTML
<!-- From https://blog.cavelab.dev/2021/04/photo-gallery-posts/ -->
|
|
|
|
{{- if and (eq .Type "photos") (eq .Kind "page") -}}
|
|
<script src="{{ (resources.Get "assets/lightgallery.min.js" | fingerprint).Permalink }}"></script>
|
|
<script>lightGallery(document.getElementById('lightgallery'), {selector: '.photo-item'});</script>
|
|
{{- end -}}
|
|
|
|
<!-- lightgallery is: https://github.com/sachinchoolur/lightGallery -->
|