2023-07-01 11:01:17 +03:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
{% block content %}
|
|
|
|
|
<section id="content">
|
|
|
|
|
{% block content_title %}
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% for article in dates if article.category != 'blog' %}
|
|
|
|
|
|
|
|
|
|
<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>
|
2025-12-20 11:44:54 +02:00
|
|
|
<abbr class="published" title="{{ article.date.isoformat() }}">[{{ article.locale_date }}] </abbr>
|
2023-07-01 11:01:17 +03:00
|
|
|
<span class="entry-summary">{{ article.summary }}</span>
|
|
|
|
|
</header>
|
|
|
|
|
</article>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
|
{% include 'pagination.html' %}
|
|
|
|
|
</section><!-- /#content -->
|
|
|
|
|
{% endblock content %}
|