receptty.org/templates/base.html

34 lines
1.1 KiB
HTML
Raw Normal View History

{% import "macros.html" as macro %}
<!DOCTYPE html>
<html lang="en">
<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="/style.css") }}" type="text/css">
<link rel="stylesheet" href="{{ get_url(path="/icons.css") }}" type="text/css">
2023-11-09 10:20:04 +01:00
{% block head_extra %}{% endblock head_extra %}
</head>
<body>
<nav>
2023-04-03 22:11:05 +02:00
<div class="primary">
<div class="wrap">
<a href="{{ config.base_url }}" class="title">Recepty na cesty</a>
<ul>
2023-04-03 23:06:49 +02:00
<li><a href="{{ get_url(path="@/vyhledavani/_index.md") }}" title="Vyhledávání"><span class="icon-search"></span></a></li>
2023-04-03 22:11:05 +02:00
<!-- <li><a href="/info/"><span class="icon-info"></span></a></li> -->
<li><a href="{{ config.extra.git }}" title="Git"><span class="icon-git"></span></a></li>
</ul>
</div>
</div>
2023-04-03 22:11:05 +02:00
<div class="secondary">
<div class="wrap">
{{ macro::subnav() }}
</div>
</div>
</nav>
{% block content %}{% endblock content %}
{% block script %}{% endblock script %}
</body>
</html>