bots-as-digital-infrapunctures/themes/default/templates/index.html
2020-10-16 21:26:52 +02:00

26 lines
805 B
HTML

{% extends "base.html" %}
{% block content %}
{% block content_title %}
{% endblock %}
<section>
{% for article in articles_page.object_list|sort(attribute="slug")%}
<article class="page">
<header>
{% if loop.index >= 2 %}
<h2 class="page-title"><a href="{{ SITEURL }}/{{ article.url }}" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></h2>
{% else %}
<h2 class="page-title">{{ article.title }}</h2>
{% endif %}
</header>
<div class="entry-content"> {{ article.summary }} </div>
<footer class="page-footer">
{% if loop.index == 1 %}
<a href="{{ SITEURL }}/{{ article.url }}" title="Permalink to {{ article.title|striptags }}"><button>Start</button></a>
{% endif %}
</footer>
</article></li>
{% endfor %}
</section>
{% endblock content %}