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.
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}{{ SITENAME }} - Categories{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
{% block content_title %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% for category, articles in categories | sort(attribute="slug") %}
|
|
|
|
<a class="nounderline" href="{{ SITEURL }}/{{ category.url }}" title="Permalink to {{ category|striptags }}">
|
|
|
|
{% set c = category|replace("-","</em><br><br>") %}
|
|
|
|
{% set c = '<em>'+c %}
|
|
|
|
<h1 class="category">{{ c }}</h1>
|
|
|
|
</a>
|
|
|
|
<section>
|
|
|
|
{% for article in articles | reverse %}
|
|
|
|
<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>
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|