| title | gallery | |||||
|---|---|---|---|---|---|---|
Example Gallery |
|
Some words.
{{< gallery "img/*.png" "test" >}}
An image gallery, and some more words.
| <!-- light gallery --> | |
| <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/2.4.0/css/lightgallery-bundle.min.css" integrity="sha384-dBF8MEM2phKRyLDWAAiv46eog697GrUsdB8kIwEzCgyaIQkCNu08OjhnC8cSZOqh" crossorigin="anonymous" /> | |
| <style> | |
| .gallery-frame { | |
| display: flex; | |
| flex-direction: row; | |
| flex-wrap: wrap; | |
| padding: 1rem; | |
| } | |
| .gallery-item { | |
| margin: 1rem; | |
| } | |
| </style> |
| <!-- light gallery --> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/2.4.0/lightgallery.min.js" integrity="sha384-SMXsJkdv0pWRFF7S1lZPUvnBOw2WnTKw88DRxOqLysifuSomt1/jdArjX6c+d8yu" crossorigin="anonymous"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/2.4.0/plugins/pager/lg-pager.min.js" integrity="sha384-KWUYFmH9+fIKCHDl+8GwbHvmGw3Q4qk0mVB1BBRznlQIZma3czxxpeVQtD71bM64" crossorigin="anonymous"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/lightgallery/2.4.0/plugins/zoom/lg-zoom.min.js" integrity="sha384-B2e5p5SHlYQtPrvEdMpFrKtwNN5cJgFgKWpZBLdEmgjDjaPKl7bVh0masHqDdHoc" crossorigin="anonymous"></script> |
| {{ $filter := default "images/*" (.Get 0) }} | |
| {{ $gallery := (.Page.Resources.Match $filter) }} | |
| <div id="gallery-{{ $.Get 1 }}" class="gallery-frame"> | |
| {{ range $gallery }} | |
| {{ $meta := index (where $.Page.Params.gallery "name" .Name) 0 }} | |
| {{ $resized := .Fill "200x120 q50" }} | |
| <div class="gallery-item" data-src="{{ .Permalink }}"> | |
| <a class="thumbnail" href="{{ .Permalink }}" data-lightbox="{{ $.Get 1 }}"> | |
| <img src="{{ $resized.Permalink }}" alt="{{ default "no alt text provided" $meta.alt }}" /> | |
| </a> | |
| </div> | |
| {{ end }} | |
| </div> | |
| <script type="text/javascript"> | |
| lightGallery(document.getElementById('gallery-{{ $.Get 1 }}'), { | |
| plugins: [lgPager, lgZoom], | |
| selector: '.gallery-item', | |
| speed: 250, | |
| }); | |
| </script> |
| title | gallery | |||||
|---|---|---|---|---|---|---|
Example Gallery |
|
Some words.
{{< gallery "img/*.png" "test" >}}
An image gallery, and some more words.