aboutsummaryrefslogtreecommitdiffstats
path: root/_layouts/default.html
blob: d0f592208568ebe099f248e3701ac7a50b0aefe7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<html>
    <head>
        <meta charset="utf-8">
        <meta lang="en">
        <meta http-equiv="Content-Security-Policy" content="default-src 'self'">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>{{ page.title }} - {{ site.title }}</title>
        {% feed_meta %}
        <link rel="stylesheet" href="/assets/css/style.css">
        <link rel="icon" href="/assets/img/favicon.ico" type="image/x-icon">
    </head>
    <body>
        {% include navigation.html %}
        <div class="content">
        {{ content }}
        </div>
        {% include footer.html %}
    </body>
</html>