Projekt

Obecné

Profil

Stáhnout (1.2 KB) Statistiky
| Větev: | Revize:
1 c058c65c Anděl Ondřej
<?php session_start()?>
2 9a7b1f4c Ondřej Anděl
<!doctype html>
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 af2e04cd Anděl Ondřej
    <link rel="stylesheet" href="view/style.css">
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
13
    <!-- jQuery library -->
14
    <script src="https://code.jquery.com/jquery-3.1.1.slim.min.js"></script>
15
    <script src="https://cdnjs.cloudflare.com/ajax/libs/tether/1.4.0/js/tether.min.js"></script>
16
17
    <!-- JavaScript -->
18
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js"></script>
19
20
</head>
21
<body>
22
<div class="container-fluid">
23
    <?php include "./view/header.html" ?>
24 6ddecabb Anděl Ondřej
    <?php include "./view/menu.php" ?>
25 9a7b1f4c Ondřej Anděl
26 6ddecabb Anděl Ondřej
    <div class="row app-content">
27
        <div class="col-xs-12 col-sm-12 p-4 content d-flex">
28 af2e04cd Anděl Ondřej
            <?php include "./view/contents/indexContent.html" ?>
29 9a7b1f4c Ondřej Anděl
        </div>
30
    </div>
31
    <?php include "./view/footer.html" ?>
32
</div>
33 a908ef13 Anděl Ondřej
<?php include "./view/modals/loginModal.html" ?>
34 a9bb4272 Ondrej Drtina
<?php include "./view/modals/invalidLoginModal.html" ?>
35 9a7b1f4c Ondřej Anděl
</body>
36
</html>