summaryrefslogtreecommitdiffstats
path: root/blog/_layouts/default.html
blob: 84f05751ea221640066cae06a48aaf24f7e09c10 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
  {% include head.html %}
  <body>
    <div id="page-container">
      {% include header.html %}

      <section id="page">
        <section id="body-content">
          <section id="body">
            <div class="inner">
              {{ content }}
            </div>
          </section>
        </section>
      </section>

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