little-hesinde/little-hesinde/templates/authors.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

22 lines
615 B
HTML

{% extends "base" %}
{% block title %}
{% if has_previous %}
<a class="secondary" href="/authors/{{ backward_cursor | urlencode_strict }}/DESC">← back</a>
{% endif %}
{% if has_previous and has_more %}|{% endif%}
{% if has_more %}
<a class="secondary" href="/authors/{{ forward_cursor | urlencode_strict }}/ASC">more →</a>
{% endif %}
{% endblock title %}
{% block content %}
<div class="grid-container">
{% for author in authors %}
<a class="contrast" href="/authors/{{ author.id }}">
<article>{{ author.name }}</article>
</a>
{% endfor %}
</div>
{% endblock content %}