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.
39 lines
884 B
HTML
39 lines
884 B
HTML
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ config.title }}</title>
|
|
<link rel="stylesheet" href="/style.css">
|
|
<link rel="icon" href="/favicon.ico">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<img src="/logo.png" alt="Logo PedF">
|
|
<h1>{{ config.title | upper }}</h1>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="">Pro školy</a></li>
|
|
<li><a href="">Pro dobrovolníky</a></li>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
<main>
|
|
{% block content %}
|
|
{{ section.content | safe }}
|
|
{% endblock content %}
|
|
</main>
|
|
<footer>
|
|
<p>
|
|
{% if config.extra.institution and config.extra.institution_url -%}
|
|
<a href="{{ config.extra.institution_url }}">{{ config.extra.institution }}</a>
|
|
{%- elif config.extra.institution -%}
|
|
{{ config.extra.institution }}
|
|
{%- else -%}
|
|
{{ config.title }}
|
|
{%- endif -%}
|
|
, {{ now() | date(format="%Y") }}
|
|
</p>
|
|
</footer>
|
|
</body>
|
|
</html>
|