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.
48 lines
1.6 KiB
48 lines
1.6 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="/{{ THEME_STATIC_DIR }}/css/{{ CSS_FILE }}" />
|
|
{% 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 %}
|
|
<li><a href="{{ link }}">{{ title }}</a></li>
|
|
{% endfor %}
|
|
{% if DISPLAY_PAGES_ON_MENU %}
|
|
{% for p in pages %}
|
|
<li{% if p == page %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a></li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{% if DISPLAY_CATEGORIES_ON_MENU %}
|
|
{% for cat, null in categories %}
|
|
<li{% if cat == category %} class="active"{% endif %}><a href="{{ SITEURL }}/{{ cat.url }}">{{ cat }}</a></li>
|
|
{% endfor %}
|
|
{% endif %}
|
|
<li class="active"><a href="{{ SITEURL }}/categories/">Overview</a></li>
|
|
</ul></nav><!-- /#menu -->
|
|
|
|
<section id="content">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</section>
|
|
|
|
<footer id="contentinfo" class="body">
|
|
<hr>
|
|
<address id="about" class="vcard body">
|
|
The online module Bots as Digital Infrapuncture is developed in the context of the course <a href="#">Tool Criticism</a> at the <a href="#">University of Utrecht</a>. The course itself is made with <a href="https://getpelican.com/">Pelican</a>.
|
|
</address>
|
|
</footer>
|
|
|
|
</body>
|
|
</html>
|
|
|