aboutsummaryrefslogtreecommitdiff
path: root/.themes/classic/source/_layouts/page.html
diff options
context:
space:
mode:
Diffstat (limited to '.themes/classic/source/_layouts/page.html')
-rw-r--r--.themes/classic/source/_layouts/page.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/.themes/classic/source/_layouts/page.html b/.themes/classic/source/_layouts/page.html
index fb51816f..48dff5cb 100644
--- a/.themes/classic/source/_layouts/page.html
+++ b/.themes/classic/source/_layouts/page.html
@@ -6,17 +6,17 @@ layout: default
<article>
<header>
<h1 class="entry-title">{{ page.title | titlecase }}</h1>
- {% unless page.no_meta or !index %}<p class="meta">{% include post/date.html %}</p>{% endunless %}
+ {% if page.meta == false or !page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %}
</header>
{{ content | smart_quotes }}
- {% unless page.no_footer %}
+ {% unless page.footer == false %}
<footer>
{% if page.date %}
<p class="meta">
{% include post/date.html %}
</p>
{% endif %}
- {% unless page.no_sharing %}
+ {% unless page.sharing == false %}
{% include post/sharing.html %}
{% endunless %}
</footer>