1 {% extends "base.html" %}
2 {% block content_title %}{% endblock %}
10 <h1><a href="{{ SITEURL }}" id="site-title"> {# {{ SITENAME }} #} {% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a> {#:#}</h1>
11 {% for article in articles_page.object_list %}
12 <h1><a href="{{ SITEURL }}/{{ article.url }}" id="page-title">{{ article.title }}</a></h1>
13 {% if not HIDE_DATE %}<b><time datetime="{{ article.date.isoformat() }}">{{ article.locale_date }}</time></b>{% endif %}
24 {% if DEFAULT_PAGINATION %}
25 <div class="paginator">
26 {% if articles_page.has_previous() %}
27 {% if articles_page.previous_page_number() == 1 %}
28 <a href="{{ SITEURL }}/{{ page_name }}.html"><<<</a>
30 <a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html">
35 Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
36 {% if articles_page.has_next() %}
37 <a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">
46 {% endblock content %}