The making of a publication for the 2020 edition of the AMRO festival organised by Servus. (Alice & Manetta are working on this.)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<section>
|
|
|
|
|
|
|
|
{% for article in articles %}
|
|
|
|
<article class="post">
|
|
|
|
<h2 class="post-title">
|
|
|
|
<a href="{{ SITEURL }}/{{ article.url }}" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a>
|
|
|
|
</h2>
|
|
|
|
<div class="post-info">
|
|
|
|
<div class="author">
|
|
|
|
{{ article.author }}
|
|
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<div class="date">
|
|
|
|
{{ article.locale_date }}
|
|
|
|
</div>
|
|
|
|
{% if article.category %}
|
|
|
|
<div class="category">
|
|
|
|
<a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a>
|
|
|
|
</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<div class="post-summary">
|
|
|
|
<!-- {{ article.summary }} -->
|
|
|
|
</div>
|
|
|
|
</article>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
</section>
|
|
|
|
{% endblock content %}
|