<!DOCTYPE html>
<html lang="en">
	<head>
		<title>
			{% block title %}
				{% if current_path != "/" %}
					{{ config.title }} &ndash;
					{% if section.title %}
						{{ section.title }}
					{% elif page.title %}
						{{ page.title }}
					{% endif %}
				{% else %}
					{{ config.title }}
				{% endif %}
			{% endblock title %}
		</title>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1">
		<link rel="icon" type="image/x-icon" href="/img/fr.ico">
		<link rel="stylesheet" href="/general.css">
		<link rel="stylesheet" href="/vars.css">
		<link rel="stylesheet" href="/content.css">
		<link rel="stylesheet" href="/style.css">
		<link rel="stylesheet" href="/home.css">
		{% block styles %}
		{% endblock styles %}
	</head>
	<body>
		<header>
			<nav>
				<a href="/" class="logo">
					<img src="/img/fr_logo.webp" alt="logo">
				</a>
				<!--<div class="links">
					{% for item in config.extra.nav_items %}
						<a href="{{ item.path }}"
							{% if item.path == current_path and item.path != "/" %}
								class="active"
							{% endif %}
						>{{ item.name }}</a>
						{% endfor %}				
        </div>-->
			</nav>
		</header>

		<main>
			{% block content %}
				<section>
					{% if section %}
						{{ section.content | safe }}
					{% elif page %}
						{{ page.content | safe }}
					{% endif %}
				</section>
			{% endblock content %}
		</main>
		<footer>
			{% if config.extra.git %}
				<a href="{{ config.extra.git }}" target="_blank">Source</a>
			{% endif %}</p>
			<p>&copy; filiprojek.cz 2022 - {{ now() | date(format="%Y")}}</p>
		</footer>

	</body>
</html>