pelican-mg/templates/index.html

29 lines
1.2 KiB
HTML
Raw Normal View History

2014-12-29 22:08:56 +00:00
{% extends "base.html" %}
{% block content_title %}{% endblock %}
{% block content %}
<div class="uk-width-medium-4-5">
{% if articles %}
{% for article in (articles_page.object_list if articles_page else articles) %}
2014-12-29 22:08:56 +00:00
2015-01-01 20:06:34 +00:00
{% if loop.index == 1 %}
{% include "partials/article-excerpt.html" %}
2015-01-01 20:06:34 +00:00
{% else %}
{% include "partials/article-short.html" %}
2015-01-01 20:06:34 +00:00
{% endif %}
2014-12-29 22:08:56 +00:00
{% endfor %}
2015-01-01 20:06:34 +00:00
{% if DEFAULT_PAGINATION and articles_paginator.num_pages > 1 %}
<ul class="uk-pagination">
{% if articles_previous_page %}<li><a href="{{ SITEURL }}/{{ articles_previous_page.url }}"><i class="uk-icon-angle-double-left"></i></a></li>{% endif %}
{% if articles_previous_page %}<li><a href="{{ SITEURL }}/{{ articles_previous_page.url }}">{{ articles_previous_page.number }}</a></li>{% endif %}
<li class="uk-active"><span>{{ articles_page.number }}</span></li>
{% if articles_next_page %}<li><a href="{{ SITEURL }}/{{ articles_next_page.url }}"><i class="uk-icon-angle-double-right"></i></a></li>{% endif %}
{% if articles_next_page %}<li><a href="{{ SITEURL }}/{{ articles_next_page.url }}">{{ articles_next_page.number }}</a></li>{% endif %}
</ul>
{% endif %}
2014-12-29 22:08:56 +00:00
{% endif %}
</div>
{% endblock %}