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

{{ article.title }}

+
{% include "article_infos.html" %}
+
{{ article.summary }} + more ... +
+
+
+ {% endfor %} +{% endif %} + + {% if articles_page and articles_paginator.num_pages > 1 %} + + +{% else %} + {% if pages %} +
+

Pages

+ {% for page in pages %} +
  • {{ page.title }}
  • + {% endfor %} +
    + {% endif %} +{% endif %} +{% endblock content %}