diff --git a/themes/bootstrap/templates/index.html b/themes/bootstrap/templates/index.html new file mode 100644 index 0000000000000000000000000000000000000000..35d424234be98261ec5c3f0856a74f91526a44e3 --- /dev/null +++ b/themes/bootstrap/templates/index.html @@ -0,0 +1,36 @@ +{% extends "base.html" %} +{% block content %} + +{% if articles %} +{% for article in (articles_page.object_list if articles_page else articles) %} +
+

{{ article.title }}

+
{% include "metadata.html" %}
+
{{ article.summary }} more… +
+
+{% endfor %} +{%endif%} + +{% if articles_page and articles_paginator.num_pages > 1 %} + +{% endif %} + +{% endblock %}