37 lines
1.7 KiB
HTML
37 lines
1.7 KiB
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>
|
|
|
|
<!-- once upon a time, favicons were a simple folk; but then they grew to be greedy... -->
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ SITEURL }}/apple-touch-icon.png?v=E6j37mrY2e">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ SITEURL }}/favicon-32x32.png?v=E6j37mrY2e">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="{{ SITEURL }}/favicon-16x16.png?v=E6j37mrY2e">
|
|
<link rel="manifest" href="{{ SITEURL }}/site.webmanifest?v=E6j37mrY2e">
|
|
<link rel="mask-icon" href="{{ SITEURL }}/safari-pinned-tab.svg?v=E6j37mrY2e" color="#ff9e0d">
|
|
<link rel="shortcut icon" href="{{ SITEURL }}/favicon.ico?v=E6j37mrY2e">
|
|
<meta name="apple-mobile-web-app-title" content="BrainHack Magdeburg">
|
|
<meta name="application-name" content="BrainHack Magdeburg">
|
|
<meta name="msapplication-TileColor" content="#ff9e0d">
|
|
<meta name="theme-color" content="#ff9e0d">
|
|
|
|
<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> ©2018 {{ AUTHOR }} <span class='break'>—</span>
|
|
unless <a rel="license" href='{{ SITEURL }}/copyright.html'>indicated otherwise</a>
|
|
</p>
|
|
</footer>
|
|
</main>
|
|
</body>
|
|
</html>
|