_layouts/default.html (view raw)
1<!doctype html>
2<html>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title>{{ page.title }} - {{ site.title }}</title>
7 <link rel="stylesheet" href="/assets/css/style.css">
8 <link rel="icon" href="assets/img/favicon.ico" type="image/x-icon">
9 </head>
10 <body>
11 {% include navigation.html %}
12
13 {{ content }}
14
15 {% include footer.html %}
16 </body>
17</html>