aboutsummaryrefslogtreecommitdiff
path: root/_layouts/default.html
blob: ce2a241645c67424139374338085cf4c54cdee13 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
layout: compress
---

<!DOCTYPE html>
<html lang="{{ site.lang | strip_newlines | strip_html | strip | slugify }}">

{% include head.html %}

<body>
  <main class="wrapper">
    <nav class="navigation">
      {% include header.html %}
    </nav>

    <div class="content">
      {{ content }}
    </div>

    <footer class="footer">
      {% include footer.html %}
    </footer>
  </main>
</body>

</html>