diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-07-29 16:27:13 -0400 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-07-29 16:27:25 -0400 |
commit | d6744967fa7572101202d239727b7983004e9603 (patch) | |
tree | ce6852ec4de387f6080def3dcff2e7a0ddb3f1b1 /.themes/classic/source/_includes/post | |
parent | 20de112526bcf34004e22d2c89c01f4f5154a03d (diff) | |
download | my_new_personal_website-d6744967fa7572101202d239727b7983004e9603.tar.xz my_new_personal_website-d6744967fa7572101202d239727b7983004e9603.zip |
Improved support for adding author metadata to pages
Diffstat (limited to '.themes/classic/source/_includes/post')
-rw-r--r-- | .themes/classic/source/_includes/post/author.html | 2 |
1 files changed, 2 insertions, 0 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 %} |