forked from github/pelican
34 lines
1.6 KiB
HTML
34 lines
1.6 KiB
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section id="content">
|
|
{% block content_title %}
|
|
<h2>All articles</h2>
|
|
{% endblock %}
|
|
|
|
<ol id="post-list">
|
|
{% for article in articles_page.object_list %}
|
|
<li><article class="hentry">
|
|
<header> <h2 class="entry-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title}}">{{ article.title }}</a></h2> </header>
|
|
<footer class="post-info">
|
|
<abbr class="published" title="{{ article.date.isoformat() }}"> {{ article.locale_date }} </abbr>
|
|
{% if article.author %}<address class="vcard author">By <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a></address>{% endif %}
|
|
</footer><!-- /.post-info -->
|
|
<div class="entry-content"> {{ article.summary }} </div><!-- /.entry-content -->
|
|
</article></li>
|
|
{% endfor %}
|
|
</ol><!-- /#posts-list -->
|
|
<p class="paginator">
|
|
{% if articles_page.has_previous() %}
|
|
{% if articles_page.previous_page_number() == 1 %}
|
|
<a href="{{ SITEURL }}/{{ page_name }}.html">«</a>
|
|
{% else %}
|
|
<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.previous_page_number() }}.html">«</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
Page {{ articles_page.number }} / {{ articles_paginator.num_pages }}
|
|
{% if articles_page.has_next() %}
|
|
<a href="{{ SITEURL }}/{{ page_name }}{{ articles_page.next_page_number() }}.html">»</a>
|
|
{% endif %}
|
|
</p>
|
|
</section><!-- /#content -->
|
|
{% endblock content %}
|