blob: f300dbe77d7c384984e2a6e7e7c7a711f493ee7d (
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
|
<!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>
<a href="{{ base_path }}/faq/">faq</a>
</span>
</section>
</nav>
<div class="content">
{{ content }}
</div>
</body>
</html>
|