aboutsummaryrefslogtreecommitdiff
path: root/_layouts/default.html
blob: d58d06977d0afd5d1ee67f435dedbec9f120cae4 (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 lang="en">

  {% include head.html %}
<body>
  <div class="topbar"></div>
  <div class="body-wrap">
    <div class="container">
      <!-- {% include header.html %} -->

      <div class="page-content">
        <div class="wrapper">
          {{ content }}
        </div>
      </div>

      {% include footer.html %}
    </div>
  </div>
</body>

</html>