cleaning
@ -1 +0,0 @@
|
||||
# com_pkmples.cz
|
@ -1,268 +0,0 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: "Kanit", sans-serif;
|
||||
}
|
||||
|
||||
:root {
|
||||
--clrBlue: #444b64;
|
||||
--clrRed: #d65343;
|
||||
--clrGreen: #90a9a1;
|
||||
--clrGrey400: #e2ba84;
|
||||
--clrGrey200: #f2dfc7;
|
||||
}
|
||||
|
||||
body,
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
body {
|
||||
background-color: var(--clrGrey200);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
color: var(--clrBlue);
|
||||
}
|
||||
|
||||
h1 {
|
||||
color: var(--clrRed);
|
||||
}
|
||||
|
||||
header {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
padding-block: 1rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
header::before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
inset: 2rem 0 2rem 0;
|
||||
background-color: var(--clrGreen);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
header img {
|
||||
width: 100%;
|
||||
height: 80px;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
a {
|
||||
cursor: pointer;
|
||||
font: inherit;
|
||||
text-decoration: none;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
a span {
|
||||
font-size: 0.8rem !important;
|
||||
transition: 300ms ease;
|
||||
}
|
||||
a:hover span {
|
||||
transform: translateX(0.2rem);
|
||||
}
|
||||
|
||||
.party__ples {
|
||||
text-align: center;
|
||||
margin-top: 4rem;
|
||||
}
|
||||
|
||||
.party__ples img {
|
||||
height: 6rem;
|
||||
}
|
||||
|
||||
.hero__button {
|
||||
padding: 0.5rem 1rem;
|
||||
border: 3px solid var(--clrBlue);
|
||||
font-weight: 800;
|
||||
color: var(--clrRed);
|
||||
border-radius: 5px;
|
||||
background-color: var(--clrGrey400);
|
||||
text-transform: uppercase;
|
||||
font-size: 1.2rem;
|
||||
width: fit-content;
|
||||
margin: 4rem auto;
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.2rem;
|
||||
}
|
||||
|
||||
.hero__button img {
|
||||
position: absolute;
|
||||
height: 4rem;
|
||||
}
|
||||
|
||||
.hero__button .doprava {
|
||||
left: -1rem;
|
||||
top: 50%;
|
||||
transform: translate(-100%) translateY(-50%) rotate(10deg);
|
||||
height: 3rem;
|
||||
animation: p 1s linear infinite alternate-reverse;
|
||||
}
|
||||
|
||||
@keyframes p {
|
||||
from {
|
||||
transform: translate(-90%) translateY(-50%) rotate(10deg);
|
||||
}
|
||||
to {
|
||||
transform: translate(-100%) translateY(-50%) rotate(10deg);
|
||||
}
|
||||
}
|
||||
|
||||
.hero__button .doleva {
|
||||
right: -1rem;
|
||||
top: 50%;
|
||||
animation: l 1s linear infinite alternate-reverse;
|
||||
}
|
||||
|
||||
@keyframes l {
|
||||
from {
|
||||
transform: translate(90%) translateY(-50%);
|
||||
}
|
||||
to {
|
||||
transform: translate(100%) translateY(-50%);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 510px) {
|
||||
header::before {
|
||||
inset: 2.7rem 0 2.7rem 0;
|
||||
}
|
||||
}
|
||||
|
||||
.cenik__img {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-wrap: wrap;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.cenik__img img {
|
||||
max-width: 100%;
|
||||
width: 30rem;
|
||||
object-fit: contain;
|
||||
}
|
||||
.cenik {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border: 1px solid var(--clrRed);
|
||||
width: 30rem;
|
||||
padding-inline: 1rem;
|
||||
color: var(--clrRed);
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
.cenik div {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 1rem;
|
||||
justify-content: space-between;
|
||||
padding-block: 1rem;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.cenik div p {
|
||||
display: grid;
|
||||
text-align: right;
|
||||
gap: 0.3rem;
|
||||
font-weight: 600;
|
||||
width: min(190px, 100%);
|
||||
}
|
||||
|
||||
.cenik div p:last-child {
|
||||
font-weight: 800;
|
||||
font-size: 1.2em;
|
||||
}
|
||||
|
||||
.cenik div + div {
|
||||
border-top: 1px solid var(--clrRed);
|
||||
}
|
||||
|
||||
.cenik div p span {
|
||||
color: var(--clrBlue);
|
||||
font-size: 0.9em;
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
.cenik div {
|
||||
font-size: 14px;
|
||||
}
|
||||
}
|
||||
|
||||
.video__section {
|
||||
background-color: var(--clrGrey400);
|
||||
display: grid;
|
||||
place-items: center;
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
iframe {
|
||||
border-radius: 5px;
|
||||
aspect-ratio: 16/9;
|
||||
width: min(560px, 100%);
|
||||
}
|
||||
|
||||
.info {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
margin-top: 3rem;
|
||||
gap: 3rem;
|
||||
padding: 1rem;
|
||||
}
|
||||
.info__table {
|
||||
display: grid;
|
||||
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
@media (min-width: 963px) {
|
||||
.info__table {
|
||||
grid-template-columns: repeat(2, 450px);
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 963px) {
|
||||
.info__table {
|
||||
max-width: 600px;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 403px) {
|
||||
.party__ples img {
|
||||
height: 5rem;
|
||||
}
|
||||
}
|
||||
|
||||
.info__table h3 {
|
||||
color: var(--clrRed);
|
||||
}
|
||||
|
||||
.info__table > * {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 2rem;
|
||||
}
|
||||
|
||||
.info__table img {
|
||||
height: 4rem;
|
||||
}
|
||||
|
||||
.plakat {
|
||||
max-width: calc(100% - 2rem);
|
||||
width: 30rem;
|
||||
margin: 4rem auto;
|
||||
box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px,
|
||||
rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
padding: 5rem 1rem 2rem 1rem;
|
||||
}
|
Before Width: | Height: | Size: 186 B |
Before Width: | Height: | Size: 679 KiB |
Before Width: | Height: | Size: 705 KiB |
Before Width: | Height: | Size: 703 KiB |
Before Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 31 KiB |
189
.old/index.html
@ -1,189 +0,0 @@
|
||||
<head>
|
||||
<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="google-site-verification"
|
||||
content="95ajJo4LsoVNgG60HxS8CVzmIFHoj3w2NQ-H-YyijIw"
|
||||
/>
|
||||
<title>PKM PARTY PLES</title>
|
||||
<link rel="canonical" href="https://www.pkmples.cz/" />
|
||||
<link rel="stylesheet" href="/css/styles.css" />
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link
|
||||
href="https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;800&display=swap"
|
||||
rel="stylesheet"
|
||||
/>
|
||||
<link href="https://fonts.googleapis.com/css?family=Material+Icons|Material+Icons+Outlined|Material+Icons+Two+Tone|Material+Icons+Round|Material+Icons+Sharp" rel="stylesheet">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="new-favicon/favicon-16x16.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="new-favicon/favicon-32x32.png">
|
||||
<link rel="apple-touch-icon" href="new-favicon/apple-touch-icon.png">
|
||||
<link rel="icon" sizes="192x192" href="new-favicon/android-chrome-192x192.png">
|
||||
<link rel="icon" sizes="512x512" href="new-favicon/android-chrome-512x512.png">
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<img
|
||||
src="pkmples-web-new-material/header/pruh-medium.png"
|
||||
alt="pkm pruh"
|
||||
/>
|
||||
</header>
|
||||
<section class="party__ples">
|
||||
<img
|
||||
src="pkmples-web-new-material/header/party-ples-medium.png"
|
||||
alt="party-ples-large"
|
||||
/>
|
||||
</section>
|
||||
<section class="party__thanks" style="display: flex; justify-content: center; margin: 100px 25px 50px 25px">
|
||||
<p style="max-width: 500px; text-align: center">Děkujeme všem za nezapomenutelný večer! Na fotky z fotokoutku od <a href="https://www.facebook.com/profile.php?id=100009098313789" target="_blank" style="color: var(--clrRed); text-decoration: underline">Petry Horákové</a> a z parketu od <a href="https://www.instagram.com/ota.pro/" target="_blank" style="color: var(--clrRed); text-decoration: underline">Oty Procházky</a> se můžete podívat přes odkazy níže. Budeme se těšit příští rok!</p>
|
||||
</section>
|
||||
|
||||
<section class="party__links">
|
||||
<a
|
||||
class="hero__button"
|
||||
href="https://photos.app.goo.gl/Ff62vodzyRFNrMsY7"
|
||||
target="_blank"
|
||||
style="margin: 1rem auto;"
|
||||
>
|
||||
FOTKY Z FOTOKOUTKU
|
||||
<span class="material-icons">
|
||||
double_arrow
|
||||
</span>
|
||||
</a>
|
||||
<a
|
||||
class="hero__button"
|
||||
href="https://photos.app.goo.gl/DdxK5VqvjAWkavSK6"
|
||||
target="_blank"
|
||||
style="margin: 1rem auto;"
|
||||
>
|
||||
FOTKY Z PARKETU
|
||||
<span class="material-icons">
|
||||
double_arrow
|
||||
</span>
|
||||
</a>
|
||||
</section>
|
||||
<section class="cenik__img">
|
||||
<img
|
||||
src="/img/polaroid-thanks-web-750.png"
|
||||
alt="polaroid-web"
|
||||
/>
|
||||
</section>
|
||||
<a
|
||||
class="hero__button"
|
||||
href="https://www.facebook.com/events/616074790100388/?active_tab=discussion"
|
||||
target="_blank"
|
||||
>
|
||||
Facebook Událost
|
||||
<span class="material-icons">
|
||||
double_arrow
|
||||
</span>
|
||||
</a>
|
||||
<section class="video__section">
|
||||
<iframe
|
||||
class="video"
|
||||
height="315"
|
||||
src="https://www.youtube.com/embed/AcBfwC4E810"
|
||||
title="YouTube video player"
|
||||
frameborder="0"
|
||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
|
||||
allowfullscreen
|
||||
></iframe>
|
||||
</section>
|
||||
<section class="info">
|
||||
<h1>Na co se můžete těšit?</h1>
|
||||
<div class="info__table">
|
||||
<div>
|
||||
<img src="pkmples-web-new-material/ikony/uvod.png" alt="ikonka" />
|
||||
<div class="text">
|
||||
<h3>Slavnostní úvod</h3>
|
||||
<p>
|
||||
Na rozehřátí ti něco pěknýho řeknem a možná se dočkáš i nějakýho toho videjka.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<img
|
||||
src="pkmples-web-new-material/ikony/fotokoutek.png"
|
||||
alt="ikonka"
|
||||
/>
|
||||
<div class="text">
|
||||
<h3>Fotokoutek</h3>
|
||||
<p>
|
||||
Vyblejsknem tě samotnýho nebo s celou partou. A to v našem koutku i na tanečním place!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<img src="pkmples-web-new-material/ikony/muzika.png" alt="ikonka" />
|
||||
<div class="text">
|
||||
<h3>Kvalitní muzika</h3>
|
||||
<p>
|
||||
“Proč nehrají, preceptore?” na našem plese rozhodně neuslyšíš. Zahraje nám BigBand ZUŠ Turnov, kterej do toho umí hrábnout.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<img src="pkmples-web-new-material/ikony/beerpong.png" alt="ikonka" />
|
||||
<div class="text">
|
||||
<h3>Beer pong</h3>
|
||||
<p>
|
||||
Zahraj si o super ceny v týhle obdobě americkýho fenoménu.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<img src="pkmples-web-new-material/ikony/tombola.png" alt="ikonka" />
|
||||
<div class="text">
|
||||
<h3>Tombola</h3>
|
||||
<p>
|
||||
Už teď ty ceny nemáme kam dávat. Tak nám přijď pomoct a nějakou si odnes domů!
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div>
|
||||
<img
|
||||
src="pkmples-web-new-material/ikony/prekvapeni.png"
|
||||
alt="ikonka"
|
||||
/>
|
||||
<div class="text">
|
||||
<h3>Půlnoční překvapení</h3>
|
||||
<p>
|
||||
No, máš se prostě na co těšit. Bude to velký! Co? To už by přece nebylo překvápko.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<h3 style="color: var(--clrRed); text-align: center; margin-top: 2rem;">a více...</h3>
|
||||
<img src="pkmples-web-new-material/plakat/pkmples-plakat-new-web-large.png" alt="pkmples-plakat-new-web-large" class="plakat">
|
||||
<footer><a href="https://www.fofrweb.com/" target="_blank">Vytvořeno týmem Fofrweb</a></footer>
|
||||
</body>
|
||||
</html>
|
Before Width: | Height: | Size: 71 KiB |
Before Width: | Height: | Size: 446 KiB |
Before Width: | Height: | Size: 63 KiB |
Before Width: | Height: | Size: 962 B |
Before Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 15 KiB |
@ -1 +0,0 @@
|
||||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
Before Width: | Height: | Size: 16 KiB |
Before Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 21 KiB |
Before Width: | Height: | Size: 9.3 KiB |
Before Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 11 MiB |
Before Width: | Height: | Size: 2.7 MiB |
Before Width: | Height: | Size: 675 KiB |
Before Width: | Height: | Size: 1.2 MiB |
Before Width: | Height: | Size: 2.8 MiB |
Before Width: | Height: | Size: 7.6 MiB |
Before Width: | Height: | Size: 705 KiB |
@ -1,2 +0,0 @@
|
||||
User-Agent: *
|
||||
Allow: /
|
22
config.toml
@ -1,22 +0,0 @@
|
||||
# The URL the site will be built for
|
||||
base_url = "https://www.pkmples.cz"
|
||||
title = "PKM PARTY PLES"
|
||||
|
||||
compile_sass = true
|
||||
minify_html = true
|
||||
build_search_index = false
|
||||
|
||||
[markdown]
|
||||
highlight_code = true
|
||||
external_links_no_follow = true
|
||||
external_links_no_referrer = true
|
||||
smart_punctuation = true
|
||||
|
||||
[extra]
|
||||
git = "https://github.com/fofrweb/com_pkmples.cz"
|
||||
nav_items = [
|
||||
{name="Domů", path="/"},
|
||||
{name="Fotoarchiv", path="/fotoarchiv"},
|
||||
{name="Webarchiv", path="/webarchiv"},
|
||||
]
|
||||
|
@ -1,4 +0,0 @@
|
||||
+++
|
||||
title = "aktuality"
|
||||
page_template = "index.html"
|
||||
+++
|
@ -1,9 +0,0 @@
|
||||
+++
|
||||
title = "Pozvanka na PKM Ples 2024"
|
||||
date = 2023-09-19
|
||||
+++
|
||||
|
||||
- Srdecne Vas zveme na dalsi rocnik oblibeneho __PKM PARTY PLESu__
|
||||
- Letosni rocnik se bude konat opet ve --Strelnici v Turnove--
|
||||
- Pozvete vase __pratele__ a dorazte 24. 2. 2024 na nas ples!
|
||||
- Jiz tradicne zahraje kapela `BIG BAND ZUS TURNOV`
|
@ -1,4 +0,0 @@
|
||||
+++
|
||||
title = "Fotoarchiv"
|
||||
template = "fotoarchiv.html"
|
||||
+++
|
@ -1,5 +0,0 @@
|
||||
|
||||
+++
|
||||
title = "Webarchiv"
|
||||
template = "webarchiv.html"
|
||||
+++
|
@ -1,25 +0,0 @@
|
||||
@font-face {
|
||||
font-family: open-sans;
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
src: url('fonts/open-sans-regular.woff2') format('woff2'),
|
||||
url('fonts/open-sans-regular.woff') format('woff'),
|
||||
url('fonts/open-sans-regular.ttf') format('truetype');
|
||||
}
|
||||
@font-face {
|
||||
font-family: open-sans;
|
||||
font-weight: normal;
|
||||
font-style: italic;
|
||||
src: url('fonts/open-sans-italic.woff2') format('woff2'),
|
||||
url('fonts/open-sans-italic.woff') format('woff'),
|
||||
url('fonts/open-sans-italic.ttf') format('truetype');
|
||||
}
|
||||
@font-face {
|
||||
font-family: open-sans;
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
src: url('fonts/open-sans-bold.woff2') format('woff2'),
|
||||
url('fonts/open-sans-bold.woff') format('woff'),
|
||||
url('fonts/open-sans-bold.ttf') format('truetype');
|
||||
}
|
||||
|
@ -1,8 +0,0 @@
|
||||
:root {
|
||||
--clr-blue: #444b64;
|
||||
--clr-red: #d65343;
|
||||
--clr-green: #90a9a1;
|
||||
--clr-grey-400: #e2ba84;
|
||||
--clr-grey-200: #f2dfc7;
|
||||
}
|
||||
|
@ -1,5 +0,0 @@
|
||||
.content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
margin: 2rem 8rem;
|
||||
}
|
@ -1,25 +0,0 @@
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
font-family: "Kanit", sans-serif;
|
||||
}
|
||||
|
||||
body {
|
||||
background: var(--clr-grey-400);
|
||||
}
|
||||
|
||||
.flex-col {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.flex-row {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
flex-direction: row;
|
||||
}
|
||||
|
@ -1 +0,0 @@
|
||||
|
@ -1,18 +0,0 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>PKM PARTY PLES | 404 Not found</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">
|
||||
</head>
|
||||
<body>
|
||||
<div class="content flex-col">
|
||||
<h2>404 - Not found</h2>
|
||||
<a href="/">Home</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
@ -1,107 +0,0 @@
|
||||
<!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>
|
||||
|
@ -1,9 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<section class="content">
|
||||
|
||||
<h1>fotoarchiv</h1>
|
||||
</section>
|
||||
{% endblock content %}
|
@ -1,13 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<section class="content">
|
||||
<h1>home</h1>
|
||||
<section class="aktuality">
|
||||
<h2>Aktuality</h2>
|
||||
</section>
|
||||
</section>
|
||||
|
||||
{% endblock content %}
|
||||
|
@ -1,8 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<section class="content">
|
||||
<h1>webarchiv</h1>
|
||||
</section>
|
||||
{% endblock content %}
|