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

26 lines
805 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="page">
<header>
2020-10-16 21:26:52 +02:00
{% 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 %}
2020-10-16 21:26:52 +02:00
<a href="{{ SITEURL }}/{{ article.url }}" title="Permalink to {{ article.title|striptags }}"><button>Start</button></a>
{% endif %}
</footer>
</article></li>
{% endfor %}
2020-09-18 17:41:16 +02:00
</section>
{% endblock content %}