21 lines
625 B
HTML
21 lines
625 B
HTML
|
<link rel="stylesheet" href="/css/justifiedGallery.min.css" />
|
||
|
<script src="/js/jquery-3.5.1.min.js"></script>
|
||
|
<script src="/js/jquery.justifiedGallery.min.js"></script>
|
||
|
{{ $pages := where (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) ".Params.gallery" "!=" nil }}
|
||
|
<div id="all" >
|
||
|
{{ range $pages }}
|
||
|
<a style="border-bottom: 5px solid transparent" href="{{ .RelPermalink }}">
|
||
|
<img alt="{{ .Title }}" src="{{.Params.gallery}}"/>
|
||
|
</a>
|
||
|
{{ end }}
|
||
|
</div>
|
||
|
<div style="clear: both;"></div>
|
||
|
|
||
|
<script>
|
||
|
$("#all").justifiedGallery({
|
||
|
rowHeight : 250,
|
||
|
margins : 5,
|
||
|
lastRow : 'nojustify',
|
||
|
});
|
||
|
</script>
|