30 lines
548 B
PHP
30 lines
548 B
PHP
<?php
|
|
|
|
?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="cs">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<?php require "assets/header.php" ?>
|
|
|
|
<main>
|
|
<section class="main-heading">
|
|
<h1>Škola čar a kouzel v Bradavicích</h1>
|
|
</section>
|
|
<section>
|
|
<a href="zaci.php">Seznam všech žáků</a>
|
|
</section>
|
|
</main>
|
|
|
|
|
|
<?php require "assets/footer.php" ?>
|
|
|
|
</body>
|
|
</html>
|