aboutsummaryrefslogtreecommitdiffstats
path: root/tuxlite_zf/templates/index.html
diff options
context:
space:
mode:
authorJustin Mayer <entrop@gmail.com>2013-03-30 11:28:31 -0700
committerJustin Mayer <entrop@gmail.com>2013-03-30 11:28:31 -0700
commitf8c19921c7920857098f2eb285bf18dbdd14d7f6 (patch)
tree52563b4c69439e72d6a65a6a7a10978c820b1341 /tuxlite_zf/templates/index.html
parent561c283d4bfa9ffa960f84a025fbbfb914ae7561 (diff)
parent0099192688966ca407030058548e2c38be37e43b (diff)
downloadpelican-themes-f8c19921c7920857098f2eb285bf18dbdd14d7f6.tar.gz
Merge pull request #81 from Mins/master
Add new theme based on Zurb Foundation 4
Diffstat (limited to 'tuxlite_zf/templates/index.html')
-rw-r--r--tuxlite_zf/templates/index.html49
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 %}