aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_layouts/default.html
blob: caa95f142d30d885714e207babe264d2f4d59c8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% include common/header.html %}
<div class="row">
  <div class="col-md-8">
    {{ content }}
    {% unless site.settings.sidebar.hide or page.sidebar.hide %}
      {% comment %}Separate the content from the sidebar on narrow screens.{% endcomment %}
      <hr/>
    {% endunless %}
  </div>
  <div class="col-md-4">
    {% include common/sidebar.html %}
  </div>
</div>
{% include common/footer.html %}