diff options
author | Brandon Mathis <brandon@imathis.com> | 2011-09-06 03:18:31 -0500 |
---|---|---|
committer | Brandon Mathis <brandon@imathis.com> | 2011-09-06 03:18:31 -0500 |
commit | 3d0572190873bec3336fb25d5bdcfab659dbf015 (patch) | |
tree | a44054d2f738f626d8fa588b257e912da9307968 | |
parent | 31b5388402d8311e7537eb9b5446008506cdc39e (diff) | |
download | my_new_personal_website-3d0572190873bec3336fb25d5bdcfab659dbf015.tar.xz my_new_personal_website-3d0572190873bec3336fb25d5bdcfab659dbf015.zip |
fixed missing date in page headers
-rw-r--r-- | .themes/classic/source/_layouts/page.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.themes/classic/source/_layouts/page.html b/.themes/classic/source/_layouts/page.html index 729b48ec..dbf209c4 100644 --- a/.themes/classic/source/_layouts/page.html +++ b/.themes/classic/source/_layouts/page.html @@ -7,7 +7,7 @@ layout: default {% if page.title %} <header> <h1 class="entry-title">{{ page.title | titlecase }}</h1> - {% if page.date %}<p class="meta">{% include post/date.html %}</p>{% endif %} + {% if page.date %}<p class="meta">{% include post/date.html %}{{ time }}</p>{% endif %} </header> {% endif %} {{ content }} |