108 lines
4.1 KiB
HTML
108 lines
4.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
<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">
|
|
<link rel="stylesheet" href="/variables.css">
|
|
<link rel="stylesheet" href="/_fonts.css">
|
|
<link rel="stylesheet" href="/general.css">
|
|
<link rel="stylesheet" href="/nav.css">
|
|
<link rel="stylesheet" href="/vars.css">
|
|
<link rel="stylesheet" href="/content.css">
|
|
<link rel="stylesheet" href="/home.css">
|
|
{% block styles %}
|
|
{% endblock stles %}
|
|
<meta charset="UTF-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1.0"
|
|
/>
|
|
<meta id="contentLanguage" http-equiv="Content-Language" content="cs_CZ" />
|
|
<meta
|
|
name="keywords"
|
|
content="pkm, pkm ples, pkm party ples, pkm party ples 2023, gytu pkm, gytu ples, gytuples, absolvenťák, absolventský ples, absolventský ples gytu, gytu absolventský ples, maturitní ples 8. A gytu, maturitní ples 4. C gytu, pavel mlejnek, pavel mlejnek ples, jarda valkoun, jarda valkoun ples, filip janeček, filip janeček ples, maturitní ples OHS, maturitní ples SUPŠ, maturitní ples VOŠ turnov, maturitní ples SUPŠ a VOŠ turnov špéra, maturitní ples špéra, ples pro studenty, studentský ples, malé divy, nadační fond malé divy, ples, bigband zuš turnov, bigband turnov, bigband turnov ples, kc turnov ples, kc turnov pkm ples, kc turnov pkm party ples, kc turnov pkm party ples 2023, turnov střelnice ples, střelnice pkm ples, střelnice pkm party ples, střelnice ples, střelnice pkm, kc střelnice ples, kc střelnice pkm party ples, kc střelnice ples, kc střelnice pkm, kc střelnice, kc turnov, kc střelnice"
|
|
/>
|
|
<meta
|
|
name="description"
|
|
content="PKM, kamarádi z Gymnázia Turnov pořádají ples pro studenty v KC Střelnice v Turnově! Ne Maturitní ples GyTu, Maturitní ples OHS, nebo Absolventský ples Gymnázia Turnov, ale PKM PARTY PLES!"
|
|
/>
|
|
<meta property="og:locale" content="cs_CZ" />
|
|
<meta property="og:type" content="website" />
|
|
<meta property="og:title" content="PKM PARTY PLES" />
|
|
<meta
|
|
property="og:description"
|
|
content="PKM, kamarádi z Gymnázia Turnov pořádají ples pro studenty v KC Střelnice v Turnově! Ne Maturitní ples GyTu, Maturitní ples OHS, nebo Absolventský ples Gymnázia Turnov, ale PKM PARTY PLES!"
|
|
/>
|
|
<meta property="og:site_name" content="pkmples.cz" />
|
|
<meta name="author" content="Fofrweb | https://fofrweb.com" />
|
|
<meta name="email" content="webmaster(@)fofrweb.com" />
|
|
<meta name="copyright" content="(c) pkmples.cz" />
|
|
<meta name="expires" content="never" />
|
|
|
|
<!--
|
|
<meta name="robots" content="index,follow" />
|
|
<meta name="Seznambot" content="index,follow" />
|
|
<meta name="Googlebot" content="index,follow" />
|
|
-->
|
|
|
|
<meta name="robots" content="noindex,nofollow" />
|
|
<meta name="Seznambot" content="noindex,nofollow" />
|
|
<meta name="Googlebot" content="noindex,nofollow" />
|
|
|
|
<meta
|
|
name="google-site-verification"
|
|
content="95ajJo4LsoVNgG60HxS8CVzmIFHoj3w2NQ-H-YyijIw"
|
|
/>
|
|
<link rel="canonical" href="https://www.pkmples.cz/" />
|
|
</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>
|
|
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|