diff options
author | Jiachen Yang <farseerfc@gmail.com> | 2012-03-12 07:17:06 +0900 |
---|---|---|
committer | Jiachen Yang <farseerfc@gmail.com> | 2012-03-12 07:17:06 +0900 |
commit | 8f363a24355aba06f54ea4615facf7c278b859d9 (patch) | |
tree | 12c25950888ff79f7d2c81f14fea54a98d5b92f2 /bootstrap2/templates/index.html | |
parent | f567ee85739eb9c9732aea09339bd9b7825891ff (diff) | |
download | pelican-themes-8f363a24355aba06f54ea4615facf7c278b859d9.tar.gz |
minor changes, added license file
Diffstat (limited to 'bootstrap2/templates/index.html')
-rw-r--r-- | bootstrap2/templates/index.html | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bootstrap2/templates/index.html b/bootstrap2/templates/index.html index 4dd4279..f1a75d9 100644 --- a/bootstrap2/templates/index.html +++ b/bootstrap2/templates/index.html @@ -2,10 +2,9 @@ {% block content_title %}{% endblock %} {% block content %} {% if articles %} - <h1>Articles</h1> {% for article in (articles_page.object_list if articles_page else articles) %} <div class='article'> - <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2> + <h1><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h1> <div class="well small">{% include "article_infos.html" %}</div> <div class="summary">{{ article.summary }} <a class="btn primary xsmall" href="{{ SITEURL }}/{{ article.url }}">more ...</a> @@ -13,7 +12,7 @@ </div> <hr /> {% endfor %} - {%endif%} +{%endif%} {% if articles_page and articles_paginator.num_pages > 1 %} <div class="pagination"> |