diff options
| author | Brandon Mathis <brandon@imathis.com> | 2011-09-04 14:18:28 -0500 |
|---|---|---|
| committer | Brandon Mathis <brandon@imathis.com> | 2011-09-04 14:19:16 -0500 |
| commit | 4c21e69093144150c99252ff9c599864408902e5 (patch) | |
| tree | 49fa1b35fedab65167f6b2ad821208aa7289f4d9 /.themes/classic/source/_layouts | |
| parent | 8c0dd58ee6de37b0a726f72c99dc84beeef0b6d3 (diff) | |
| download | my_new_personal_website-4c21e69093144150c99252ff9c599864408902e5.tar.xz my_new_personal_website-4c21e69093144150c99252ff9c599864408902e5.zip | |
Time metadata for updated pages and posts are now displayed where and when it is appropriate
Diffstat (limited to '.themes/classic/source/_layouts')
| -rw-r--r-- | .themes/classic/source/_layouts/page.html | 2 | ||||
| -rw-r--r-- | .themes/classic/source/_layouts/post.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.themes/classic/source/_layouts/page.html b/.themes/classic/source/_layouts/page.html index 08e056ec..729b48ec 100644 --- a/.themes/classic/source/_layouts/page.html +++ b/.themes/classic/source/_layouts/page.html @@ -15,7 +15,7 @@ layout: default <footer> {% if page.date or page.author %}<p class="meta"> {% if page.author %}{% include post/author.html %}{% endif %} - {% include post/date.html %} + {% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %} {% if page.categories %}{% include post/categories.html %}{% endif %} </p>{% endif %} {% unless page.sharing == false %} diff --git a/.themes/classic/source/_layouts/post.html b/.themes/classic/source/_layouts/post.html index 78557c04..ce8a5dea 100644 --- a/.themes/classic/source/_layouts/post.html +++ b/.themes/classic/source/_layouts/post.html @@ -9,7 +9,7 @@ single: true <footer> <p class="meta"> {% include post/author.html %} - {% include post/date.html %} + {% include post/date.html %}{% if updated %}{{ updated }}{% else %}{{ time }}{% endif %} {% include post/categories.html %} </p> {% unless page.sharing == false %} |
