aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/_layouts/default.html
blob: eaae1b95586725ef7a125e766e4673d001e40936 (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 class="sidebar-sep"/>
    {% endunless %}
  </div>
  <div class="col-md-4">
    {% include common/sidebar.html %}
  </div>
</div>
{% include common/footer.html %}