diff options
| author | Brandon Mathis <brandon@imathis.com> | 2011-07-18 16:59:59 -0400 |
|---|---|---|
| committer | Brandon Mathis <brandon@imathis.com> | 2011-07-18 16:59:59 -0400 |
| commit | 64b23d9f34f140b8e544960070525343dfe1273b (patch) | |
| tree | a14bde5798b64f4d578439b4f38e1ee7f3b4643d /.themes/classic/source/_layouts/default.html | |
| parent | 0f2686eff7f23a996a2a35f712079ea3ac971cd9 (diff) | |
| download | my_new_personal_website-64b23d9f34f140b8e544960070525343dfe1273b.tar.xz my_new_personal_website-64b23d9f34f140b8e544960070525343dfe1273b.zip | |
Improved variable names for setting footer, sharing, sidebar and metadata diesplay from page configurations
Diffstat (limited to '.themes/classic/source/_layouts/default.html')
| -rw-r--r-- | .themes/classic/source/_layouts/default.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.themes/classic/source/_layouts/default.html b/.themes/classic/source/_layouts/default.html index 15546bb5..fdb60ded 100644 --- a/.themes/classic/source/_layouts/default.html +++ b/.themes/classic/source/_layouts/default.html @@ -1,11 +1,11 @@ {% include head.html %} -<body {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == 'none' %} class="no-sidebar" {% endif %}> +<body {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == false %} 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' %} + {% unless page.sidebar == false %} <aside role=sidebar>{% include sidebar.html %}</aside> {% endunless %} </div> |
