This is the repository for the online module Bots as Digital Infrapuncture, commissioned by the Utrecht University
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.
 
 
 
 
 

25 lines
805 B

{% 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 %}