This commit is contained in:
2024-04-21 12:48:12 +02:00
commit c7289e5bdd
34 changed files with 3179 additions and 0 deletions

1
templates/404.html Normal file
View File

@@ -0,0 +1 @@
<h1>TO KDE SI</h1>

18
templates/50x.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<title>Error</title>
<style>
html { color-scheme: light dark; }
body { width: 35em; margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif; }
</style>
</head>
<body>
<h1>An error occurred.</h1>
<p>Sorry, the page you are looking for is currently unavailable.<br/>
Please try again later.</p>
<p>If you are the system administrator of this resource then you should check
the error log for details.</p>
</body>
</html>

7
templates/footer.html Normal file
View File

@@ -0,0 +1,7 @@
<div class="footer-content">
<p>&copy;Game Hub</p>
<div class="footer-links">
<a href="#">Ísť hore.</a>
<a href="mailto:adamsramek@gamehub.sk">adamsramek@gamehub.sk</a>
</div>
</div>

15
templates/header.html Normal file
View File

@@ -0,0 +1,15 @@
<div class="navbar">
<div class="logo"><a href="#">GAME HUB</a></div>
<div id="dropdown_menu">
<li><a href="/?index">Domov</a></li>
<li><a href="/?Hry">Hry</a></li>
<li><a href="#Úvod">Úvod</a></li>
<li><a href="#Top_Hry">Top Hry</a></li>
<li><a href="#Info">Info</a></li>
<li><a href="#Kontakt">Kontakt</a></li>
<li><a href="/?Login" class="Login">Login</a></li>
</div>
<div id="toggle_btn">
<i id="toggle_btn_icon" class="fa-solid fa-bars"></i>
</div>
</div>

25
templates/skeleton.html Normal file
View File

@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css" integrity="sha512-SnH5WK+bZxgPHs44uWIX+LLJAJ9/2PkPKZ5QiAj6Ta86w+fsb2TkcmfRyVX3pBnMFcV7oQPJkl9QevSCWr3W6A==" crossorigin="anonymous" referrerpolicy="no-referrer">
<link rel="stylesheet" href="/Global/Global.css">
<script src="/Global/Global.js"></script>
<title>GAME HUB</title>
__TEMPLATE_SCRIPT__
__TEMPLATE_STYLE__
</head>
<body>
<header>
__TEMPLATE_HEADER__
</header>
<main>
__TEMPLATE_STRANKA__
</main>
<footer>
__TEMPLATE_FOOTER__
</footer>
</body>
</html>