diff options
author | Alexis Metaireau <alexis@notmyidea.org> | 2012-01-26 07:54:12 -0800 |
---|---|---|
committer | Alexis Metaireau <alexis@notmyidea.org> | 2012-01-26 07:54:12 -0800 |
commit | 5ca71a7c7793832e5becae5717b2f9ac4744bded (patch) | |
tree | 1cb09bd2e2b7217423a36240f6fcba5d6890fe5c /tuxlite_tbs/templates/index.html | |
parent | 77eff4701ac0bd7a11728531da319bb99d1dbd4a (diff) | |
parent | 24aaa07fa699407f56357f867be225a58eaf1bdd (diff) | |
download | pelican-themes-5ca71a7c7793832e5becae5717b2f9ac4744bded.tar.gz |
Merge pull request #11 from Mins/master
Added tuxlite theme, which is inspired by the original bootstrap theme.
Diffstat (limited to 'tuxlite_tbs/templates/index.html')
-rw-r--r-- | tuxlite_tbs/templates/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/tuxlite_tbs/templates/index.html b/tuxlite_tbs/templates/index.html new file mode 100644 index 0000000..45a491d --- /dev/null +++ b/tuxlite_tbs/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 %} + +{# First item #} +{% if loop.first and not articles_page.has_previous() %} + + <div class='article'> + <div class="content-title"> + <a href="{{ SITEURL }}/{{ article.url }}"><h2>{{ article.title }}</h2></a> + {% include "metadata.html" %} + </div> + <div>{{ article.content }}</div> + </div> + + {% if loop.length == 1 %} + {% include 'pagination.html' %} + {% endif %} + + {% if loop.length > 1 %} + <hr /> + <br /> + <h2>Other Entries</h2> + {% endif %} + +{# other items #} +{% else %} + + <div class='article'> + <a href="{{ SITEURL }}/{{ article.url }}"><h3>{{ article.title }}</h3></a> + <div class= "well small"> {% include "metadata.html" %} </div> + <div class="summary">{{ article.summary }} <a class="btn primary xsmall" href="{{ SITEURL }}/{{ article.url }}">read more</a></div> + </div> + + {% if loop.last and (articles_page.has_previous() or not articles_page.has_previous() and loop.length > 1) %} + {% include 'pagination.html' %} + {% endif %} + +{% endif %} {# First item if #} + +{% endfor %} {# For article #} +{% endif %} {# If articles #} + +{% endblock content %} |