19 lines
483 B
HTML
19 lines
483 B
HTML
{% extends 'base.html' %}
|
|
{% block head %}
|
|
<link rel="stylesheet" href="{{ SITE_URL }}/{{ THEME_STATIC_DIR }}/css/index.css" type="text/css"">
|
|
{% endblock head %}
|
|
|
|
{% block content %}
|
|
<ul>
|
|
{% for article in articles %}
|
|
{% if article.category == "poemes" %}
|
|
<li>
|
|
<a href="{{article.url}}">{{article.title}}</a> ({{ article.date.strftime('%d.%m.%Y') }})
|
|
</li>
|
|
<p>--</p>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endblock content %}
|