From d38c4094a1aef8be93218adeefe66b20308d96e3 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Fri, 21 Nov 2014 01:12:26 -0500 Subject: Initial website Markdown conversion. --- themes/lv2/templates/article_list.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 themes/lv2/templates/article_list.html (limited to 'themes/lv2/templates/article_list.html') diff --git a/themes/lv2/templates/article_list.html b/themes/lv2/templates/article_list.html new file mode 100644 index 0000000..2d3c8cd --- /dev/null +++ b/themes/lv2/templates/article_list.html @@ -0,0 +1,22 @@ +{% extends "base.html" %} +{% block content %} + {% if articles %} + {% for article in (articles_page.object_list if articles_page else articles) %} +
+

{{ article.title }}

+ {% if DISPLAY_ARTICLE_INFO_ON_INDEX %} +
+ {% include "includes/article_info.html" %} +
+ {% endif %} +
{{ article.summary }} + {% include 'includes/comment_count.html' %} + more ... +
+
+
+ {% endfor %} + {% endif %} + + {% include 'includes/pagination.html' %} +{% endblock content %} -- cgit v1.2.1