aboutsummaryrefslogtreecommitdiffhomepage
path: root/site/_layouts/default.html
blob: cf7e07fdb0a42c984b726ea80f75ceb009dc876e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html lang="en" itemscope itemtype="https://schema.org/WebPage">
  {% include head.html %}
  <body>
    {% include header.html %}

    {% if page.title %}
    <div class="page-title-bar">
      <div class="container">
        <h1>{{ page.title }}</h1>
      </div>
    </div>
    {% endif %}

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

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