aboutsummaryrefslogtreecommitdiff
path: root/_layouts/default.html
blob: fb2c1d9504553ff0f44e7193da64d207f2508cb5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8" />

    <title>{% if page.title %}{{ page.title | escape }} ≡ {% endif %}{{ site.name }}</title>
    <meta name="description" content="{{ description }}" />

    <link rel="stylesheet" href="{{ "/assets/style.css" | relative_url }}">
    <link href="{{ "/assets/favicon.ico" | relative_url }}" rel="shortcut icon" type="image/x-icon" />

    <meta name="viewport" content="width=device-width, initial-scale=1.0">
  </head>
  <body>
    <div class="page">
      {% include nav.html %}
      {{ content }}
    </div>
    <div class="clear"></div>
    <script type="text/javascript" src={{ "/assets/age.js" | relative_url }}></script>
  </body>
</html>