aboutsummaryrefslogtreecommitdiff
path: root/source/_layouts/default.html
blob: 553c1beca19739da54ebbe303f364a88ac92947b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!DOCTYPE html>
<html>
{% include head.html %}
<body id="{{ page.body_id }}">
  <header><div>{% include header.html %}</div></header>
  <nav id="nav"><div>{% include navigation.html %}</div></nav>
  <div id="page">
    <div>
      <div id="main"><article>{{ content }}</article></div>
      <aside>{% include sidebar.html %}</aside>
    </div>
  </div>
  <footer><div>{% include footer.html %}</div></footer>
</body>
</html>