From e78dd2f6212bfbd293b98e4278ead77d5ab70984 Mon Sep 17 00:00:00 2001 From: Vincent Douillet Date: Sat, 4 Sep 2021 21:38:06 +0200 Subject: Initial commit --- templates/index.html | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 templates/index.html (limited to 'templates/index.html') diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..a020bb1 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,20 @@ +{% extends "base.html" %} +{% block content %} +
+{% block content_title %} +{% endblock %} + +{% for article in articles_page.object_list %} + +{% endfor %} +{% if articles_page.has_other_pages() %} + {% include 'pagination.html' %} +{% endif %} +
+{% endblock content %} -- cgit v1.2.3