brainhack.psychoinformatics.de/theme/templates/base.html
Alex Waite 22537ba82a Add SITEURL to template
Though this may not be enough, given the img locations.
2018-03-01 13:47:12 +01:00

26 lines
891 B
HTML

<!DOCTYPE html>
<html lang="{{ DEFAULT_LANG }}">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="{{ AUTHOR }}" />
<title>{{ SITENAME }}{% block title %}{% endblock %}</title>
<link rel="stylesheet" type="text/css" href="{{ SITEURL }}/theme/css/style.css">
{% block extra_headers %}{% endblock %}
</head>
<body>
<main>
{% block content %}{% endblock %}
<footer class='card'>
<p>content licensed <a rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/">cc-by-sa</a>
<span class='break'></span> &copy;2018 {{ AUTHOR }} <span class='break'></span>
unless <a rel="license" href='{{ SITEURL }}/copyright.html'>indicated otherwise</a>
</p>
</footer>
</main>
</body>
</html>