mirror of
https://git.nolog.cz/NoLog.cz/headline.git
synced 2025-01-31 11:53:35 +01:00
21 lines
508 B
HTML
21 lines
508 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block header_class %}{% endblock header_class %}
|
|
|
|
{% block body %}
|
|
<div class="bg-white sticky top-0 py-3 border-b z-10 mb-6">
|
|
{% include "parts/filters.html" %}
|
|
</div>
|
|
|
|
<div id="diff-list">
|
|
<section class="container mb-8">
|
|
{% include "parts/diff_list.html" %}
|
|
</section>
|
|
|
|
<div class="overflow-x-auto">
|
|
<div class="container mb-3">{{ pagination.links }}</div>
|
|
</div>
|
|
|
|
<div class="container text-sm text-gray-500">{{ pagination.info }}</div>
|
|
</div>
|
|
{% endblock body %}
|