aboutsummaryrefslogtreecommitdiffstats
path: root/_layouts/default.html
blob: 9081473d3eba0c1e5cffa99cfa28f7b4821f204b (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>

  {% assign site_full_url = site.url | append: site.baseurl %}

  {% include head.html %}

  <body>

    {% include header.html %}

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

    {% include footer.html %}

  </body>

</html>