bots-as-digital-infrapunctures/themes/default/templates/index.html

18 lines
541 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
{% block content_title %}
{% endblock %}
2020-09-18 17:41:16 +02:00
<section>
2020-09-11 17:59:20 +02:00
{% for article in articles_page.object_list|sort(attribute="slug")%}
<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>
<div class="entry-content"> {{ article.summary }} </div>
<footer class="post-info"></footer>
</article></li>
{% endfor %}
2020-09-18 17:41:16 +02:00
</section>
{% endblock content %}