5d1d04c52c
2. Added a page layout and improved html on post layout. 3. Improved flexibility of stylesheets for different layout types. 4. Collapsing sidebar now moves it to the bottom of the page and floats content into columns. 5. Improved sharing settings, added Google plus one.
16 lines
509 B
HTML
16 lines
509 B
HTML
{% include head.html %}
|
|
<body {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == 'none' %} class="no-sidebar" {% endif %}>
|
|
<header>{% include header.html %}</header>
|
|
<nav>{% include navigation.html %}</nav>
|
|
<div id="main">
|
|
<div id="content">
|
|
{{ content }}
|
|
{% unless page.sidebar == 'none' %}
|
|
<aside role=sidebar>{% include sidebar.html %}</aside>
|
|
{% endunless %}
|
|
</div>
|
|
</div>
|
|
<footer>{% include footer.html %}</footer>
|
|
</body>
|
|
</html>
|