summaryrefslogtreecommitdiff
path: root/templates/default.html
blob: f7aa7ec11bd94dca4b8761d27c52b36938ca9003 (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
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html data-theme="dark">
    <head>
        <meta charset="utf-8">
        <meta http-equiv="X-UA-Compatible" content="IE=edge">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <meta name="author" content="Eugen Wissner" />

        $partial("templates/_includes/meta.html")$

        <title>$title$ | Flevum</title>

        <link rel="icon" type="image/png" href="/assets/images/favicon.svg">
        <link href="/assets/css/styles.css?v=1" rel="stylesheet">
        <link href="/assets/css/custom.css?v=2" rel="stylesheet">
    </head>

    <body>
        $partial("templates/_includes/partials/burgerMenu.html")$

        $partial("templates/_includes/layout/header.html")$

        $partial("templates/_includes/layout/navigation.html")$

        $partial("templates/_includes/partials/headerSeparator.html")$

        <main class="$if(active-index)$wrapper long$else$wrapper$endif$" role="main">
            $body$
        </main>

        $partial("templates/_includes/layout/footer.html")$
    </body>
</html>