Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 0s
20 lines
524 B
HTML
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 %}
|