diff options
Diffstat (limited to '.themes/classic')
-rw-r--r-- | .themes/classic/source/_includes/post/author.html | 2 | ||||
-rw-r--r-- | .themes/classic/source/_layouts/page.html | 6 |
2 files changed, 7 insertions, 1 deletions
diff --git a/.themes/classic/source/_includes/post/author.html b/.themes/classic/source/_includes/post/author.html index b2db9043..83dd6a89 100644 --- a/.themes/classic/source/_includes/post/author.html +++ b/.themes/classic/source/_includes/post/author.html @@ -1,5 +1,7 @@ {% if post.author %} {% assign author = post.author %} +{% elsif page.author %} + {% assign author = page.author %} {% else %} {% assign author = site.author %} {% endif %} 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 %} |