aboutsummaryrefslogtreecommitdiffstats
path: root/pelican-bootstrap3/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'pelican-bootstrap3/templates/index.html')
-rw-r--r--pelican-bootstrap3/templates/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/pelican-bootstrap3/templates/index.html b/pelican-bootstrap3/templates/index.html
new file mode 100644
index 0000000..b38c0ee
--- /dev/null
+++ b/pelican-bootstrap3/templates/index.html
@@ -0,0 +1,17 @@
+{% extends "base.html" %}
+{% block content %}
+ {% if articles %}
+ {% for article in (articles_page.object_list if articles_page else articles) %}
+ <article>
+ <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
+ <div class="summary">{{ article.summary }}
+ {% include 'includes/comment_count.html' %}
+ <a class="btn btn-default btn-xs" href="{{ SITEURL }}/{{ article.url }}">more ...</a>
+ </div>
+ </article>
+ <hr/>
+ {% endfor %}
+ {% endif %}
+
+ {% include 'includes/pagination.html' %}
+{% endblock content %}