summaryrefslogtreecommitdiffstats
path: root/blog/_layouts/default.html
blob: 676adb1c4072498d6ced58c80eac33f4a0dd6dc8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<!DOCTYPE html>
<html>
  {% include head.html %}
  <body>
    <div id="page-container">
      {% include header.html %}

      <section id="page">
        <section id="body-content">
          <section id="body">
            {{ content }}
          </section>
          <section id="side-body">
            <h2>{% t global.our_sponsors %}</h2>
            <section id="sponsor-pos-1">
              {% include sponsors.html %}
            </section>
          
            {% if site.links %}
              <section id="links">
                <h2>{% t home.links %}</h2>
              </section>
            {% endif %}
          </section>
        </section>
      </section>

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