You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
web/templates/base.html

38 lines
992 B
HTML

{% import "macros.html" as macro %}
<!DOCTYPE html>
<html lang="cs">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
{%- block title -%}
{{ config.title }}
{%- endblock title -%}
</title>
<link rel="stylesheet" href="{{ get_url(path="main.css") | safe }}">
</head>
<body>
<header>
<div class="wrap">
<a href="{{ config.base_url }}" class="logo"><img src="{{ get_url(path="logo.svg") }}" alt="Logo KITTV"></a>
<section>
<nav class="secondary">
{{ macro::nav_list_items(items=config.extra.nav_secondary) }}
</nav>
<nav class="primary">
{{ macro::nav_list_items(items=config.extra.nav_primary) }}
</nav>
</section>
</div>
</header>
{% block extra %}{% endblock extra %}
<main>
{% block content %}{% endblock content %}
</main>
<footer>
<p>Magdalény Rettigové 4, 116 39, Praha 1</p>
<p>Praha UK PedF KITTV, {{ now() | date(format="%Y") }}</p>
</footer>
</body>
</html>