kocandaci/templates/base.html

31 lines
769 B
HTML
Raw Normal View History

2024-01-09 23:20:06 +01:00
{% import "macros.html" as macros %}
2024-01-09 22:57:56 +01:00
<!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>
2024-01-10 00:55:20 +01:00
<link rel="stylesheet" type="text/css" href="{{ get_url(path="/style.css") }}">
2024-01-10 10:52:14 +01:00
<link rel="stylesheet" type="text/css" href="{{ get_url(path="/icons/remixicon-4.0.0.css") }}">
2024-01-09 22:57:56 +01:00
</head>
<body>
<nav>
<div class="wrap">
2024-01-10 00:55:20 +01:00
<a href="{{ config.base_url }}"><img src="{{ get_url(path="/img/logo.svg") }}" class="logo"></a>
2024-01-09 22:57:56 +01:00
<ul>
2024-01-09 23:20:06 +01:00
{{ macros::nav_items() }}
2024-01-09 22:57:56 +01:00
</ul>
</div>
</nav>
{% block content %}
{% endblock %}
<footer>
2024-01-09 23:24:49 +01:00
<p>&copy; {{ now() | date(format="%Y") }} {{ config.title }}</p>
2024-01-09 22:57:56 +01:00
</footer>
</body>
</html>