WIP: 2024-refactor #1

Draft
c0de wants to merge 52 commits from 2024-refactor into master
2 changed files with 12 additions and 1 deletions
Showing only changes of commit 572036a292 - Show all commits

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>