Massive rewrite

This commit is contained in:
2025-01-17 11:03:00 +01:00
parent 31ddea734e
commit 6477be00b6
169 changed files with 8295 additions and 5775 deletions

24
templates/set.html Normal file
View File

@@ -0,0 +1,24 @@
{% extends 'base.html' %}
{% block title %} - Set {{ item.fields.name}} ({{ item.fields.set_num }}){% endblock %}
{% block main %}
<div class="container">
<div class="row">
<div class="col-12">
{% with solo=true %}
{% include 'set/card.html' %}
{% endwith %}
</div>
</div>
</div>
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", () => {
baguetteBox.run('[data-lightbox]');
});
</script>
{% endblock %}
{% block scripts %}
<script src="{{ url_for('static', filename='scripts/set.js') }}"></script>
{% endblock %}