23 lines
765 B
HTML
23 lines
765 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1>{{ _('Search Results') }}</h1>
|
|
{% for post in posts %}
|
|
{% include '_post.html' %}
|
|
{% endfor %}
|
|
<nav aria-label="Post navigation">
|
|
<ul class="pagination">
|
|
<li class="page-item{% if not prev_url %} disabled{% endif %}">
|
|
<a class="page-link" href="#">
|
|
<span aria-hidden="true">←</span> {{ _('Newer posts') }}
|
|
</a>
|
|
</li>
|
|
<li class="page-item{% if not next_url %} disabled{% endif %}">
|
|
<a class="page-link" href="#">
|
|
{{ _('Older posts') }} <span aria-hidden="true">→</span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
{% endblock %}
|