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.
 
 
 
 
 

45 lines
1.5 KiB

<!DOCTYPE html>
<html lang="{% block html_lang %}{{ DEFAULT_LANG }}{% endblock html_lang %}">
<head>
{% block head %}
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
<meta charset="utf-8" />
<meta name="generator" content="Pelican" />
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/{{ THEME_STATIC_DIR }}/css/{{ CSS_FILE }}" />
<meta name="viewport" content="width=device-width, initial-scale=1">
{% endblock head %}
</head>
<body id="index" class="home">
<header id="banner" class="body">
<h1><a href="{{ SITEURL }}/">{{ SITENAME }}{% if SITESUBTITLE %} <strong>{{ SITESUBTITLE }}</strong>{% endif %}</a></h1>
</header>
<nav id="menu"><ul>
{% for title, link in MENUITEMS %}
<a href="{{ link }}"><li>{{ title }}</li></a>
{% endfor %}
{% if DISPLAY_CATEGORIES_ON_MENU %}
{% for cat, null in categories %}
{% set c = cat|replace("-","</em><br><br>") %}
{% set c = '<em>'+c %}
<a href="{{ SITEURL }}/{{ cat.url }}"><li{% if cat == category %} class="active"{% endif %}>{{ c }}</li></a>
{% endfor %}
{% endif %}
<br>
<a href="{{ SITEURL }}/pages/about.html"><li class="pagelink {% if 'about' in output_file %}active{% endif %}">About this Module</li></a>
<a href="{{ SITEURL }}/roadmap.html"><li class="pagelink {% if 'roadmap' in output_file %}active{% endif %}">Roadmap</li></a>
</ul></nav>
<section id="content">
{% block content %}
{% endblock %}
</section>
<footer id="contentinfo" class="body">
<hr>
</footer>
</body>
</html>