
3 changed files with 63 additions and 0 deletions
@ -0,0 +1,12 @@ |
|||||
|
</div> |
||||
|
</main> |
||||
|
|
||||
|
<footer class="footer mt-auto py-3 bg-body-tertiary"> |
||||
|
<div class="container"> |
||||
|
<span class="text-body-secondary">Place sticky footer content here.</span> |
||||
|
</div> |
||||
|
</footer> |
||||
|
|
||||
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,38 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="cs" class="h-100"> |
||||
|
<head> |
||||
|
<meta charset="UTF-8"> |
||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
||||
|
<title><?php echo "$title"; ?></title> |
||||
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> |
||||
|
</head> |
||||
|
<body class="d-flex flex-column h-100"> |
||||
|
|
||||
|
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> |
||||
|
<div class="container-fluid"> |
||||
|
<a class="navbar-brand" href="#">Fixed navbar</a> |
||||
|
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation"> |
||||
|
<span class="navbar-toggler-icon"></span> |
||||
|
</button> |
||||
|
<div class="collapse navbar-collapse" id="navbarCollapse"> |
||||
|
<ul class="navbar-nav me-auto mb-2 mb-md-0"> |
||||
|
<li class="nav-item"> |
||||
|
<a class="nav-link active" aria-current="page" href="#">Home</a> |
||||
|
</li> |
||||
|
<li class="nav-item"> |
||||
|
<a class="nav-link" href="#">Link</a> |
||||
|
</li> |
||||
|
<li class="nav-item"> |
||||
|
<a class="nav-link disabled" aria-disabled="true">Disabled</a> |
||||
|
</li> |
||||
|
</ul> |
||||
|
<form class="d-flex" role="search"> |
||||
|
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search"> |
||||
|
<button class="btn btn-outline-success" type="submit">Search</button> |
||||
|
</form> |
||||
|
</div> |
||||
|
</div> |
||||
|
</nav> |
||||
|
|
||||
|
<main class="flex-shrink-0"> |
||||
|
<div class="container"> |
@ -0,0 +1,13 @@ |
|||||
|
<?php |
||||
|
|
||||
|
$title = "Galerie 2.0"; |
||||
|
|
||||
|
include "include/header.php"; |
||||
|
|
||||
|
echo "php project template"; |
||||
|
|
||||
|
include "include/footer.php"; |
||||
|
|
||||
|
?> |
||||
|
|
||||
|
|
Loading…
Reference in new issue