diff options
author | Matt <s@tuxlite.com> | 2013-03-12 17:24:22 +0000 |
---|---|---|
committer | Matt <s@tuxlite.com> | 2013-03-12 17:24:22 +0000 |
commit | d5f56689a8ac207ef57dd8bcccced8e85ad3a3ed (patch) | |
tree | 25520321f3a40a2599c7d3c6b286dbd37c92ef50 /tuxlite_zf/templates/index.html | |
parent | 53d6c4254aa2b4781b850419d63a40527c307d71 (diff) | |
download | pelican-themes-d5f56689a8ac207ef57dd8bcccced8e85ad3a3ed.tar.gz |
Add new TuxLite_ZF theme.
Diffstat (limited to 'tuxlite_zf/templates/index.html')
-rw-r--r-- | tuxlite_zf/templates/index.html | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/tuxlite_zf/templates/index.html b/tuxlite_zf/templates/index.html new file mode 100644 index 0000000..a07813c --- /dev/null +++ b/tuxlite_zf/templates/index.html @@ -0,0 +1,49 @@ +{% 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() %} + <article> + <h3 class="article-title"><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h3> + {% include 'article_infos.html' %}{{ article.content }}{% include 'article_infos_bottom.html' %}{% include 'comments.html' %} + </article> + + {% if loop.length == 1 %} + {% include 'pagination.html' %} + {% endif %} + + {% if loop.length > 1 %} + <hr class="gradient"/> + {% endif %} + + {# other items #} + {% else %} + + <article> + <a href="{{ SITEURL }}/{{ article.url }}"><h3 class="article-title">{{ article.title }}</h3></a> + {% include 'article_infos.html' %}{{ article.summary }}{% include 'article_infos_bottom.html' %}{% include 'comments.html' %} + <a class="button radius secondary small right" href="{{ SITEURL }}/{{ article.url }}">Read More</a> + <hr class="gradient"/> + </article> + {% endif %} + + {% if loop.last %} + <!-- /#posts-list --> + {% if loop.last and (articles_page.has_previous() or not articles_page.has_previous() and loop.length > 1) %} + {% include 'pagination.html' %} + {% endif %} + {% endif %} + {% endfor %} + +{% else %} + + <h3>Pages</h3> + {% for page in PAGES %} + <li><a href="{{ SITEURL }}/{{ page.url }}">{{ page.title }}</a></li> + {% endfor %} + +{% endif %} +{% endblock content %} |