1 |
9a7b1f4c
|
Ondřej Anděl
|
<!doctype html>
|
2 |
|
|
|
3 |
|
|
<html >
|
4 |
|
|
<head>
|
5 |
|
|
<meta charset="utf-8">
|
6 |
|
|
<title>Dalimilova kronika</title>
|
7 |
|
|
|
8 |
|
|
<!-- css -->
|
9 |
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
|
10 |
a908ef13
|
Anděl Ondřej
|
<link rel="stylesheet" href="view/style.css?<?php echo date('l jS \of F Y h:i:s A'); ?>">
|
11 |
9a7b1f4c
|
Ondřej Anděl
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
12 |
a908ef13
|
Anděl Ondřej
|
<link rel="stylesheet" href="./view/library/vanillaSelectBox/vanillaSelectBox.css">
|
13 |
9a7b1f4c
|
Ondřej Anděl
|
|
14 |
|
|
<!-- jQuery library -->
|
15 |
|
|
<script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
|
16 |
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
|
17 |
|
|
|
18 |
|
|
<!-- JavaScript -->
|
19 |
|
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
|
20 |
a908ef13
|
Anděl Ondřej
|
<script src="./view/library/vanillaSelectBox/vanillaSelectBox.js"></script>
|
21 |
9a7b1f4c
|
Ondřej Anděl
|
</head>
|
22 |
|
|
<body>
|
23 |
|
|
<div class="container-fluid">
|
24 |
|
|
<?php include "./view/header.html" ?>
|
25 |
|
|
<div class="row app-content">
|
26 |
|
|
<?php include "./view/menu.php" ?>
|
27 |
|
|
|
28 |
|
|
<div class="col-xs-12 col-sm-10 p-4 content d-flex">
|
29 |
|
|
<?php include "./view/searchContent.php" ?>
|
30 |
|
|
</div>
|
31 |
|
|
</div>
|
32 |
|
|
<?php include "./view/footer.html" ?>
|
33 |
|
|
</div>
|
34 |
|
|
|
35 |
a908ef13
|
Anděl Ondřej
|
<?php include "./view/modals/loginModal.html" ?>
|
36 |
|
|
<?php include "./view/modals/detailModal.html" ?>
|
37 |
d845d95d
|
Ondrej Drtina
|
<?php include "./view/modals/settingsModal.html" ?>
|
38 |
6f8c9e05
|
Ondrej Drtina
|
<?php include "./view/modals/removeModal.html" ?>
|
39 |
9a7b1f4c
|
Ondřej Anděl
|
</body>
|
40 |
|
|
</html>
|