initiale Version (klassische Seitennavigation, keine Themes)

This commit is contained in:
2025-02-07 05:41:54 +01:00
commit 71665a1fd0
68 changed files with 6783 additions and 0 deletions

16
_includes/album.html Normal file
View File

@ -0,0 +1,16 @@
<div id="{{include.albumname}}">
{%- for image in site.static_files -%}
{%- if image.path contains 'img/albums' and image.path contains include.albumname -%}
<a href="{{ image.path }}" data-sub-html="{% exiftag image_description, , {{ image.path }} %}" >
<img src="/assets/img/thumbnails/{{ include.albumname }}/{{ image.name }}" />
</a>
{%- endif -%}
{%- endfor -%}
</div>
<script>
lightGallery(document.getElementById('{{include.albumname}}'), {
plugins: [lgZoom, lgThumbnail, lgHash, lgShare],
});
</script>