little-hesinde/little-hesinde/templates/books.html
Sebastian Hugentobler 191e5b66c3
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 0s
use urlencode_strict
2024-05-12 21:08:39 +02:00

20 lines
524 B
HTML

{% extends "base" %}
{% block title %}
{% if has_previous %}
<a class="secondary" href="/books/{{ backward_cursor | urlencode_strict }}/DESC">← back</a>
{% endif %}
{% if has_previous and has_more %}|{% endif%}
{% if has_more %}
<a class="secondary" href="/books/{{ forward_cursor | urlencode_strict }}/ASC">more →</a>
{% endif %}
{% endblock title %}
{% block content %}
<div class="grid-container">
{% for book in books %}
{% include "book_card" %}
{% endfor %}
</div>
{% endblock content %}