.themes/classic/source/_layouts/default.html
39d56bc9
 {% capture root_url %}{{ site.root | strip_slash }}{% endcapture %}
aa230616
 {% include head.html %}
64b23d9f
 <body {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == false %} class="no-sidebar" {% endif %}>
aa230616
   <header>{% include header.html %}</header>
b4584bd0
   <nav role=navigation>{% include navigation.html %}</nav>
5d1d04c5
   <div id="main">
     <div id="content">
6e2beaa9
       {{ content | expand_urls: root_url | backtick_codeblock | smart_quotes }}
64b23d9f
       {% unless page.sidebar == false %}
5d1d04c5
         <aside role=sidebar>{% include sidebar.html %}</aside>
aa230616
       {% endunless %}
     </div>
   </div>
   <footer>{% include footer.html %}</footer>
 </body>
 </html>