Files
hugo-snap-gallery/layouts/shortcodes/gallery.html

12 lines
397 B
HTML
Raw Normal View History

2019-10-20 22:27:27 +02:00
<!--
2020-03-09 13:20:20 +01:00
SPDX-FileCopyrightText: 2020 Max Mehl <mail@mehl.mx>
2019-10-20 22:27:27 +02:00
SPDX-License-Identifier: MIT
-->
<!-- count how many times we've called this shortcode; load the css if it's the first time -->
2020-03-09 13:20:20 +01:00
{{- .Page.Scratch.Add "gallery" 1 -}}
<div class="snap-gallery">
{{ .Inner }}
2019-10-20 22:27:27 +02:00
</div>
2020-03-09 13:20:20 +01:00
<!-- delete count of gallery figures (but not those of standalone figures -->
{{- .Page.Scratch.Delete "thisgalfig" -}}