diff options
-rw-r--r-- | .themes/classic/source/_layouts/page.html | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/.themes/classic/source/_layouts/page.html b/.themes/classic/source/_layouts/page.html index 48dff5cb..07dd050d 100644 --- a/.themes/classic/source/_layouts/page.html +++ b/.themes/classic/source/_layouts/page.html @@ -6,16 +6,12 @@ layout: default <article> <header> <h1 class="entry-title">{{ page.title | titlecase }}</h1> - {% if page.meta == false or !page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %} + {% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %} </header> {{ content | smart_quotes }} {% unless page.footer == false %} <footer> - {% if page.date %} - <p class="meta"> - {% include post/date.html %} - </p> - {% endif %} + {% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %} {% unless page.sharing == false %} {% include post/sharing.html %} {% endunless %} |