1. vlozenie obsahu, :)
Co-authored-by: Bruno Rybársky <bruno@brn.systems>
This commit is contained in:
1
templates/404.html
Normal file
1
templates/404.html
Normal file
@@ -0,0 +1 @@
|
||||
<h1>zlý request</h1>
|
1
templates/footer.html
Normal file
1
templates/footer.html
Normal file
@@ -0,0 +1 @@
|
||||
<p>Kontaktuje nás: Email: example@example.com | Tel.: +123 456 7890 | Adresa: 123 železná ulica, Komárno</p>
|
15
templates/header.html
Normal file
15
templates/header.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/index">Domovská stránka</a></li>
|
||||
<li><a href="/onas">O nás</a></li>
|
||||
<li><a href="/kontakt">Kontakt</a></li>
|
||||
<li class="dropdown">
|
||||
<p>Služby</p>
|
||||
<ul class="submenu">
|
||||
<li><a href="/zak">Základná služba</a></li>
|
||||
<li><a href="/pok">Pokročilá služba</a></li>
|
||||
<li><a href="/pro">Profesionálna služba</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</nav>
|
32
templates/skeleton.html
Normal file
32
templates/skeleton.html
Normal file
@@ -0,0 +1,32 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="sk" data-theme="dark">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="keywords" content="iron, recycling, metal, environment">
|
||||
<meta name="description" content="Vykup Zeleza - Your trusted partner in iron recycling.">
|
||||
<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/pico.min.css" />
|
||||
<link rel="stylesheet" href="/assets/fonts/remixicon/remixicon.css" />
|
||||
<link rel="stylesheet" href="/assets/style.css" />
|
||||
<link rel="icon" href="/assets/favicon.png" type="image/png">
|
||||
<script src="/assets/script.js"></script>
|
||||
<title>Výkup železa</title>
|
||||
__TEMPLATE_SCRIPT__
|
||||
__TEMPLATE_STYLE__
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
__TEMPLATE_HEADER__
|
||||
</header>
|
||||
<main>
|
||||
__TEMPLATE_STRANKA__
|
||||
</main>
|
||||
<footer>
|
||||
__TEMPLATE_FOOTER__
|
||||
</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
Reference in New Issue
Block a user