diff options
author | Justin Mayer <entroP@gmail.com> | 2014-01-27 09:55:49 -0800 |
---|---|---|
committer | Justin Mayer <entroP@gmail.com> | 2014-01-27 09:55:49 -0800 |
commit | c35cbabcaf4807b9474203a2fbd809883b08ad50 (patch) | |
tree | 8cf56c29445167a9f09968cae3ff60ee2777ccdd /foundation-default-colours/templates/index.html | |
parent | e05a5db62451233729123a1c50e75290042c5ae2 (diff) | |
parent | 488efa23deb42f7425378595cc5af03f58803fa3 (diff) | |
download | pelican-themes-c35cbabcaf4807b9474203a2fbd809883b08ad50.tar.gz |
Merge pull request #186 from FuzzyWuzzie/master
Add theme based on Zurb Foundation 5.0.1
Diffstat (limited to 'foundation-default-colours/templates/index.html')
-rw-r--r-- | foundation-default-colours/templates/index.html | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/foundation-default-colours/templates/index.html b/foundation-default-colours/templates/index.html new file mode 100644 index 0000000..4b85e2d --- /dev/null +++ b/foundation-default-colours/templates/index.html @@ -0,0 +1,47 @@ +{% extends "base.html" %} +{% block content %} + +{# show summaries of the latest articles #} +{% if articles %} +{% for article in (articles_page.object_list if articles_page else articles) %} +<article> + <h3><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h3> + <h6>Written by <a href="{{ SITEURL }}/author/{{ article.author|lower|replace(' ', '-') }}.html">{{ article.author }}</a> {% if article.category %}in <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category}}</a> {% endif %}on {{ article.locale_date }}.{% if article.tags|count > 0 %} Tags: {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a>, {% endfor %}{% endif %}</h6> + {{ article.content if FOUNDATION_FRONT_PAGE_FULL_ARTICLES else article.summary }} + {% if not FOUNDATION_FRONT_PAGE_FULL_ARTICLES %} + {# add a 'Continue reading' link if we're displaying summaries #} + <p class="continue"><a href="{{ SITEURL }}/{{ article.url }}">Continue reading »</a></p> + {% endif %} +</article> +<hr /> +{% endfor %} +{%endif%} + +{# deal with pagination #} +{% if articles_page and articles_paginator.num_pages > 1 %} +<div class="row" style="margin-bottom: -1.25em;"> + <div class="small-12 columns text-center"> + <div class="pagination-centered"> + <ul class="pagination"> + {% if articles_page.has_previous() %} + {% set num = articles_page.previous_page_number() %} + <li class="arrow"><a href="{{ SITEURL }}/{{ page_name }}{{ num if num > 1 else '' }}.html">← Previous</a></li> + {% else %} + <li class="arrow unavailable"><a href="#">← Previous</a></li> + {% endif %} + {% for num in range( 1, 1 + articles_paginator.num_pages ) %} + <li class="{{ 'current' 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="arrow"><a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">Next →</a></li> + {% else %} + <li class="arrow unavailable"><a href="#">→ Next</a></li> + {% endif %} + </ul> + </div> + </div> +</div> +{% endif %} + +{% endblock %} + |