summaryrefslogtreecommitdiff
path: root/templates/layout.hbs
blob: bd47622b1b322746a5c811b5d35187261ff5a271 (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
<!doctype html>
<html lang="en">
    <head>
        <meta charset="utf8">
        <link href="/static/default.css" rel="stylesheet" type="text/css"/>
        <title>pj- {{ title }}</title>
    </head>

    <body>
        <header>
            <h1>{{ title }}</h1>
        </header>
        <nav>
            <h2>Templates</h2>
            <ul>
                <li><a href="">Exercise</a></li>
                <li><a href="">Body Weight</a></li>
                <li><a href="">Book List</a></li>
            </ul>

            <h2>Settings</h2>
            <ul>
                <li><a href="">Profile</a></li>
            </ul>
        </nav>
        <main>
            {{ ~> page }}
        </main>
        <footer>
            <p>© 2020 Kjetil Ørbekk Some Rights Reserved
        </footer>
    </body>
</html>