diff options
author | SkyArrow <tommy351@gmail.com> | 2012-05-06 07:51:07 +0200 |
---|---|---|
committer | SkyArrow <tommy351@gmail.com> | 2012-05-06 07:51:07 +0200 |
commit | 4b200446ba1ce9588dbf60389165b4eb0376021a (patch) | |
tree | e1a0cca8b293b9cc549ecab1c2cf5e1c8445720c | |
parent | 97a5e760f0dbf3c5500b850983be8af002d24f4f (diff) | |
parent | b1ff177d9b620c23a3a6fcf0350a0e32cd149cfb (diff) | |
download | octopress-theme-jeyzu-4b200446ba1ce9588dbf60389165b4eb0376021a.zip octopress-theme-jeyzu-4b200446ba1ce9588dbf60389165b4eb0376021a.tar.gz |
Merge pull request #11 from xuhdev/page-footer
"page.footer" to control the display of footer
-rw-r--r-- | source/_layouts/page.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/_layouts/page.html b/source/_layouts/page.html index e055aba..03c94e8 100644 --- a/source/_layouts/page.html +++ b/source/_layouts/page.html @@ -8,7 +8,9 @@ layout: default {% endif %} <div class="entry">{{ content }}</div> </article> -{% include post/sharing.html %} +{% unless page.footer == false %} + {% include post/sharing.html %} +{% endunless %} {% if site.disqus_short_name and page.comments == true %} <section id="comment"> <h1 class="title">Comments</h1> |