_layouts/default.html (view raw)
1<!doctype html>
2<html lang="en">
3 <head>
4 <meta charset="utf-8">
5 <meta name="description"
6 content="personal website featuring music and art">
7 <meta name="keywords"
8 content="music, art, self-hosting, foss, openbsd">
9 <meta name="author"
10 content="la-ninpre">
11 <meta name="viewport"
12 content="width=device-width, initial-scale=1">
13 <title>{{ page.title }} - {{ site.title }}</title>
14 {% feed_meta %}
15 <link rel="stylesheet" href="/assets/css/style.css">
16 <link rel="icon" href="/assets/img/favicon.ico" type="image/x-icon">
17 </head>
18 <body>
19 {% include navigation.html %}
20 <div class="content">
21 {{ content }}
22 </div>
23 {% include footer.html %}
24 </body>
25</html>