don't ignore the gallery template

This commit is contained in:
c0de 2023-12-28 23:13:28 -06:00
parent 226cd3438e
commit 572036a292
2 changed files with 12 additions and 1 deletions

1
.gitignore vendored
View File

@ -3,7 +3,6 @@ thumbs/*
GenThumb.log
index*.html
.vscode
gallery.html
**/example/**
**/*venv/**
test.html

12
templates/gallery.html Normal file
View File

@ -0,0 +1,12 @@
<div class="album py-5 bg-body-tertiary">
<div class="container">
<div class="row row-cols-1 row-cols-sm-2 row-cols-md-3 g-3">
{% for gallary in gallery_items %}
{% include 'card.html' %}
{# include 'card_loading.html' #}
{% endfor %}
</div>
</div>
</div>