73 lines
1.8 KiB
HTML
73 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>
|
|
{% block title %}
|
|
{% if current_path != "/" %}
|
|
{{ config.title }} –
|
|
{% 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">
|
|
<meta name="description" content="Filip Rojek - Personal website">
|
|
<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>
|
|
<p>Build time: {{ now() | date(format="%Y-%m-%d %H:%M") }},
|
|
{% if config.extra.git %}
|
|
<a href="{{ config.extra.git }}" target="_blank">Source</a>
|
|
{% endif %}</p>
|
|
<p>© filiprojek.cz 2022 - {{ now() | date(format="%Y")}}</p>
|
|
</footer>
|
|
|
|
<script>
|
|
console.log("I heard that a cool frontend developer works for https://fofrweb.com")
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|