aboutsummaryrefslogtreecommitdiff
path: root/_layouts/default.html
blob: f969a9dd03d682b851f36224a91d895e456cd3c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: 'en' }}">

  {%- include head.html -%}

  <body>
    <div class="wrapper">
      {%- include header.html -%}
      <main>
        {{ content }}
      </main>
      {%- include footer.html -%}
    </div>
  </body>

</html>