rework front page to have shuffle and lazy infinite scroll

This commit is contained in:
xenofem 2024-01-25 04:10:17 -05:00
parent 9729f45842
commit b75bad995a
8 changed files with 214 additions and 6 deletions

View file

@ -0,0 +1,25 @@
{% extends 'base.html' %}
{% from 'utils.html' import index, root with context %}
{% block head %}
<script>
const ROOT = "{{ root() }}";
const INDEX = "{{ index() }}";
const WORKS = {{ works | tojson }};
</script>
<script src="{{ root() }}/static/index.js"></script>
{% endblock %}
{% block body %}
<div id="top">
<div id="top-padding"></div>
<div id="header">
<h1 id="title"><a href="{{ root() }}/{{ index() }}">DLibrary</a></h1>
{% include 'nav.html' %}
</div>
<div id="controls">
<button id="shuffle" name="Shuffle"><img src="{{ root() }}/static/icons/shuffle.svg"/></button>
<button id="sort" name="Sort"><img src="{{ root() }}/static/icons/sort.svg"/></button>
</div>
</div>
<div id="card-listing">
</div>
{% endblock %}