aboutsummaryrefslogtreecommitdiffstats
path: root/bootstrap/templates/index.html
diff options
context:
space:
mode:
authorMassimo Santini <massimo.santini@gmail.com>2011-12-05 23:43:04 +0100
committerMassimo Santini <massimo.santini@gmail.com>2011-12-05 23:43:04 +0100
commitdc67ee39fcfc6ae8cbcc56fffd39242b839f8cd3 (patch)
tree66b96f17911a0f2142515162d7ad38ec0b9b3b28 /bootstrap/templates/index.html
parent28bc815799239f17f896b3b64929a0356fd090db (diff)
downloadpelican-themes-dc67ee39fcfc6ae8cbcc56fffd39242b839f8cd3.tar.gz
A new theme based on Bootstrap from Twitter
Diffstat (limited to 'bootstrap/templates/index.html')
-rw-r--r--bootstrap/templates/index.html36
1 files changed, 36 insertions, 0 deletions
diff --git a/bootstrap/templates/index.html b/bootstrap/templates/index.html
new file mode 100644
index 0000000..35d4242
--- /dev/null
+++ b/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) %}
+<div class='article'>
+ <h2>{{ article.title }}</h2>
+ <div class="well small">{% include "metadata.html" %}</div>
+ <div class="summary">{{ article.summary }} <a class="btn primary xsmall" href="{{ SITEURL }}/{{ article.url }}">more…</a>
+ </div>
+</div>
+{% endfor %}
+{%endif%}
+
+{% if articles_page and articles_paginator.num_pages > 1 %}
+<div class="pagination">
+<ul>
+ {% if articles_page.has_previous() %}
+ {% set num = articles_page.previous_page_number() %}
+ <li class="prev"><a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html">&larr; Previous</a></li>
+ {% else %}
+ <li class="prev disabled"><a href="#">&larr; Previous</a></li>
+ {% endif %}
+ {% for num in range( 1, 1 + articles_paginator.num_pages ) %}
+ <li class="{{ 'active' if num == articles_page.number else '' }}"><a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html">{{ num }}</a></li>
+ {% endfor %}
+ {% if articles_page.has_next() %}
+ <li class="next"><a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">Next &rarr;</a></li>
+ {% else %}
+ <li class="next disabled"><a href="#">&rarr; Next</a></li>
+ {% endif %}
+</ul>
+</div>
+{% endif %}
+
+{% endblock %}