summaryrefslogtreecommitdiff
path: root/layout/page.html
blob: e2d342e96b972d0fef30724b505b5f675bdac55a (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
<!DOCTYPE html>
<html>
<head>
    <title>{{ title }}</title>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width">
    <link rel="stylesheet" type="text/css" href="{{ base_path }}/css/style.css">
</head>

<body id="{{ slug }}">

<nav>
<section>
    <span id="menu">
        <a href="{{ base_path }}/">home</a>
        <a href="{{ base_path }}/blog/">blog</a>
        <a href="{{ base_path }}/projects/">projects</a>
    </span>
</section>
</nav>

<div class="content">
{{ content }}
</div>

</body>
</html>