Projekt

Obecné

Profil

Stáhnout (1.31 KB) Statistiky
| Větev: | Revize:
1 cd67c936 Anděl Ondřej
<!doctype html>
2
<?php
3
    session_start();
4
?>
5
<html >
6
<head>
7
    <meta charset="utf-8">
8
    <title>Dalimilova kronika</title>
9
10
    <!-- css -->
11
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
12 af2e04cd Anděl Ondřej
    <link rel="stylesheet" href="view/style.css">
13 cd67c936 Anděl Ondřej
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
14
15
    <!-- jQuery library -->
16
    <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
17
    <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
18
19
    <!-- JavaScript -->
20
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
21
</head>
22
<body>
23
<div class="container-fluid">
24
    <?php include "./view/header.html" ?>
25
    <?php include "./view/menu.php" ?>
26
27
    <div class="row app-content">
28
        <div class="col-xs-12 col-sm-12 p-4 content d-flex">
29 af2e04cd Anděl Ondřej
            <?php include "./view/contents/changesContent.php" ?>
30 cd67c936 Anděl Ondřej
        </div>
31
    </div>
32
    <?php include "./view/footer.html" ?>
33
</div>
34
35
<?php include "./view/modals/removeChangeModal.html" ?>
36
</body>
37
</html>
38
39
<!-- hide settings, this is relevant only on search page -->
40
<script>
41
    document.getElementById("modalSettingsHref").style.display = "none";
42
</script>