summaryrefslogtreecommitdiff
path: root/public/index.php
blob: b0fa818d542f9f1b5640afeb2635fb594e18001b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/../lib/partials.php';
?>
<html>

<head>
    <title>The Tinybot Project</title>
    <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
    <link rel="stylesheet" href="/static/style.css">
    <link rel="shortcut icon" href="/static/favicon.ico" type="image/x-icon">
</head>

<body>
    <main>
        <?php html_navigation_bar() ?>

        <content>
            <h1>test</h1>
        </content>
    </main>

    <?php html_big_footer() ?>
</body>

</html>