layout: compress


<!DOCTYPE html> <html>

{% include head.html %}
<body>
  {% if page.topbar == true  %}
      <nav class="navbar">
          {% include horiznav.html %}
      </nav>
  {% else %}
      <nav class="hide-for-large navbar">
          {% include horiznav.html %}
      </nav>
  {% endif %}
  <main class="wrap">
    {% include header.html %}
    <div class="content_container columns">
        {{ content }}
    </div>
    {% if page.sidebar != null  %}
      <aside class="small-12 large-2 columns sidebar page-content recent-posts">
        {% include {{ page.sidebar | append: '.html' | prepend: '/asides/'}} %}
      </aside>
    {% endif %}
  </main>
</body>

</html>