You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.7 KiB
101 lines
3.7 KiB
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="auto">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
<link rel="stylesheet" href="css/bootstrap.min.css">
|
|
<meta name="theme-color" content="#712cf9">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="dropdown position-fixed bottom-0 end-0 mb-3 me-3 bd-mode-toggle">
|
|
<button class="btn btn-bd-primary py-2 dropdown-toggle d-flex align-items-center"
|
|
id="bs-theme"
|
|
type="button"
|
|
aria-expanded="false"
|
|
data-bs-toggle="dropdown"
|
|
aria-label="Změna vzhledu"
|
|
>
|
|
Dark/Light</button>
|
|
<ul class="dropdown-menu dropdown-menu-end shadow"
|
|
aria-labelledby="bs-theme-text">
|
|
<li>
|
|
<button type="button"
|
|
class="dropdown-item d-flex align-items-center"
|
|
data-bs-theme-value="light"
|
|
aria-pressed="false"> Light</button>
|
|
</li>
|
|
<li>
|
|
<button type="button"
|
|
class="dropdown-item d-flex align-items-center"
|
|
data-bs-theme-value="dark"
|
|
aria-pressed="false"> dark</button>
|
|
</li>
|
|
<li>
|
|
<button type="button"
|
|
class="dropdown-item d-flex align-items-center"
|
|
data-bs-theme-value="auto"
|
|
aria-pressed="false"> auto</button>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<header data-bs-theme="dark">
|
|
<div class="collapse text-bg-dark" id="navbarHeader">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-8 col-md-7 py-4">
|
|
<h4 class="text-white">TEMPLATE</h4>
|
|
<p class="">LOOOREM</p>
|
|
</div>
|
|
<div class="col-sm-4 offset-md-1 py-4">
|
|
<h4>Odkazy</h4>
|
|
<!-- ul.list-unstyled>li*4>a.text-white -->
|
|
<ul class="list-unstyled">
|
|
<li><a href="index.html" class="text-white">Home</a></li>
|
|
<li><a href="about.html" class="text-white">About</a></li>
|
|
<li><a href="galery.html" class="text-white">Gallery</a></li>
|
|
<li><a href="contact.html" class="text-white">Contact us</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="navbar navbar-dark bg-dark shadow-sm">
|
|
<div class="container">
|
|
<a class="navbar-brand d-flex" href="#">
|
|
<strong>Nazev WEBu</strong>
|
|
</a>
|
|
<button class="navbar-toggler"
|
|
type="button"
|
|
data-bs-toggle="collapse"
|
|
data-bs-target="#navbarHeader"
|
|
aria-controls="navbarHeader"
|
|
aria-expanded="false"
|
|
aria-label="Toggle navbar"
|
|
> <span class="navbar-toggler-icon"></span></button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<main>
|
|
<div class="container">
|
|
<h1>Index</h1>
|
|
</div>
|
|
|
|
</main>
|
|
|
|
<footer class="text-body-secondary py-5">
|
|
<div class="container">
|
|
<p class="float-end mb-1"><a href="#"> Zpět nahoru</a></p>
|
|
<p class="mb-1"> Jméno.Příjmení @ 2024</p>
|
|
</div>
|
|
|
|
</footer>
|
|
|
|
<script src="js/bootstrap.bundle.js"></script>
|
|
<script src="js/color-modes.js"></script>
|
|
|
|
</body>
|
|
</html>
|