django-blog-for-html-over-t.../app/website/templates/pages/all_posts.html

20 lines
460 B
HTML
Raw Normal View History

2022-05-15 20:58:36 +02:00
<h1>All posts</h1>
<hr>
{# Search #}
<section id="form-search">
{% include "components/all_posts/form_search.html" %}
</section>
{# End search #}
<hr>
<section>
{# List posts #}
<div id="all-posts">
{% include "components/all_posts/list.html" %}
</div>
{# End list posts #}
{# Paginator #}
<div id="paginator">
{% include "components/all_posts/_button_paginator.html" %}
</div>
{# End paginator #}
</section>