diff options
author | Robert Wijas <robert.wijas@gmail.com> | 2012-03-26 00:28:11 +0200 |
---|---|---|
committer | Robert Wijas <robert.wijas@gmail.com> | 2012-07-15 22:03:38 +0200 |
commit | d8238192d9fc377fd3c3f80524d44b4aaeab79b1 (patch) | |
tree | 6c5697be7ba6a20926c47c2d2999cfa79ade22f9 /source | |
parent | 1960fd36eeb6602f2e32446bd2c35b5d2c5091a7 (diff) | |
download | octopress-theme-jeyzu-d8238192d9fc377fd3c3f80524d44b4aaeab79b1.zip octopress-theme-jeyzu-d8238192d9fc377fd3c3f80524d44b4aaeab79b1.tar.gz |
banner configuration (on/off)
Diffstat (limited to 'source')
-rw-r--r-- | source/_layouts/default.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/_layouts/default.html b/source/_layouts/default.html index 70d04d1..a3fc49d 100644 --- a/source/_layouts/default.html +++ b/source/_layouts/default.html @@ -3,7 +3,9 @@ <body> <header id="header" class="inner">{% include header.html %}</header> - {% include banner.html %} + {% unless page.banner == false %} + {% include banner.html %} + {% endunless %} <div id="content" class="inner">{{ content | expand_urls: root_url }}</div> <footer id="footer" class="inner">{% include footer.html %}</footer> {% include after_footer.html %} |