29 lines
1.0 KiB
HTML
Executable File
29 lines
1.0 KiB
HTML
Executable File
{% extends "base.html" %}
|
|
{% block content %}
|
|
<section id="content">
|
|
{% block content_title %}
|
|
<h2>all posts</h2>
|
|
{% endblock %}
|
|
|
|
<ul 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|striptags }}"># {{ article.title }}</a>
|
|
</h2>
|
|
</header>
|
|
|
|
<footer class="post-info">
|
|
<time class="published" datetime="{{ article.date.isoformat() }}"> {{ article.date.strftime("%Y-%m-%d") }} </time>
|
|
</footer><!-- /.post-info -->
|
|
<div class="entry-content"> {{ article.summary }} </div><!-- /.entry-content -->
|
|
</article></li>
|
|
{% endfor %}
|
|
</ul><!-- /#posts-list -->
|
|
{% if articles_page.has_other_pages() %}
|
|
{% include 'pagination.html' %}
|
|
{% endif %}
|
|
</section><!-- /#content -->
|
|
{% endblock content %}
|