summaryrefslogtreecommitdiffstats
path: root/src/layouts/default.hbs
blob: 5b11c02340d872a712f4cb0dace94e7bbec0f392 (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
<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>{{{detag (or page.title 'Untitled')}}}{{#if site.title}} - {{site.title}}{{/if}}</title>
        {{#if page.canonicalUrl}}
        <link rel="canonical" href="{{page.canonicalUrl}}">
        {{/if}}
        {{#if page.description}}
        <meta name="description" content="{{page.description}}">
        {{/if}}
        {{#if page.keywords}}
        <meta name="keywords" content="{{page.keywords}}">
        {{/if}}
        <link rel="stylesheet" href="{{uiRootPath}}/css/site.css">
        {{> head}}
    </head>
    <body class="article">
        {{> header}}
        {{> main}}
        {{> footer}}
    </body>
</html>