Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 0s
22 lines
558 B
HTML
22 lines
558 B
HTML
{% extends "base" %}
|
|
{% block title %}
|
|
{% if has_previous %}
|
|
<a class="secondary" href="/series/{{ backward_cursor | urlencode }}/DESC">← back</a>
|
|
{% endif %}
|
|
{% if has_previous and has_more %}|{% endif%}
|
|
|
|
{% if has_more %}
|
|
<a class="secondary" href="/series/{{ forward_cursor | urlencode }}/ASC">more →</a>
|
|
{% endif %}
|
|
{% endblock title %}
|
|
|
|
{% block content %}
|
|
<div class="grid-container">
|
|
{% for s in series %}
|
|
<a class="contrast" href="/series/{{ s.id }}">
|
|
<article>{{ s.name }}</article>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock content %}
|