This commit is contained in:
2024-06-05 20:57:51 +02:00
parent 70fa64502d
commit cb994d8a5b
19 changed files with 290 additions and 11 deletions

1
templates/404.html Normal file
View File

@@ -0,0 +1 @@
<h1>zlý request</h1>

1
templates/footer.html Normal file
View File

@@ -0,0 +1 @@
<p>© 2024 Moje bambusove ponožky. Copyright rezervovaný.</p>

18
templates/header.html Normal file
View File

@@ -0,0 +1,18 @@
<div id="top">
<h1>Bambusové ponožky od majstra</h1>
</div>
<nav>
<a href="/index" id="homeLink">Domov</a>
<div class="dropdown">
<a href="#" class="dropdown">Podľa ceny</a>
<div class="dropdown-content">
<a href="/lacne" id="lacnejsieLink">Lacnejšie</a>
<a href="/stredne" id="drahsieLink">Drahšie</a>
<a href="/drahe" id="najdrahsieLink">Najdrahšie</a>
<a href="/specialne" id="specialityLink">Špeciality</a>
</div>
</div>
<a href="/kontakt" class="socklink" data-idcko="contactLinkCont" id="contactLink">Kontakty</a>
<a href="/formular" class="socklink" data-idcko="formularLinkCont" id="formularLink">Formular</a>
</nav>

30
templates/skeleton.html Normal file
View File

@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html lang="sk">
<head>
<meta charset="UTF-8">
<meta name="keywords" content="Bambusove ponozky, ponozky, bambusove ponozky za dobru cenu" viewport="">
<meta name="description" content="Bambusové ponožky od majstra">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="/assets/style.css" />
<link rel="icon" href="/assets/favicon.png" type="image/png">
<script src="/assets/script.js"></script>
<title>Bambusové ponožky</title>
__TEMPLATE_SCRIPT__
__TEMPLATE_STYLE__
</head>
<body>
<header>
__TEMPLATE_HEADER__
</header>
<main>
__TEMPLATE_STRANKA__
</main>
<footer>
__TEMPLATE_FOOTER__
</footer>
</body>
</html>