diff options
Diffstat (limited to '.themes/classic/source/_layouts/page.html')
| -rw-r--r-- | .themes/classic/source/_layouts/page.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.themes/classic/source/_layouts/page.html b/.themes/classic/source/_layouts/page.html index a2fc41ed..34cb3430 100644 --- a/.themes/classic/source/_layouts/page.html +++ b/.themes/classic/source/_layouts/page.html @@ -11,7 +11,11 @@ layout: default {{ content }} {% unless page.footer == false %} <footer> - {% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %} + {% if page.date or page.author %}<p class="meta"> + {% if page.author %}{% include post/author.html %}{% endif %} + {% include post/date.html %} + {% if page.categories %}{% include post/categories.html %}{% endif %} + </p>{% endif %} {% unless page.sharing == false %} {% include post/sharing.html %} {% endunless %} |
