diff options
-rw-r--r-- | _templates/post.mako | 2 | ||||
-rw-r--r-- | _templates/post_excerpt.mako | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/_templates/post.mako b/_templates/post.mako index 18a0399..4b9a81d 100644 --- a/_templates/post.mako +++ b/_templates/post.mako @@ -2,7 +2,7 @@ <div class="post roundedTop"> <a name="${post.slug}"></a> <div class="post_title roundedTop"><a href="${post.permapath()}" rel="bookmark" title="Permanent Link to ${post.title}">${post.title}</a></div> - <div class="post_extras">${post.date.strftime("%B %d, %Y at %H:%M")} | categories: + <div class="post_extras">${post.date.strftime("%B %d, %Y at %H:%M")} | by ${post.author} | categories: <% category_links = [] for category in post.categories: diff --git a/_templates/post_excerpt.mako b/_templates/post_excerpt.mako index 98ffb1a..f2158c0 100644 --- a/_templates/post_excerpt.mako +++ b/_templates/post_excerpt.mako @@ -1,7 +1,7 @@ <%page args="post"/> <div class="post roundedTop"> <div class="post_title roundedTop"><a href="${post.permapath()}" rel="bookmark" title="Permanent Link to ${post.title}">${post.title}</a></div> - <div class="post_extras">${post.date.strftime("%B %d, %Y at %H:%M")} | categories: + <div class="post_extras">${post.date.strftime("%B %d, %Y at %H:%M")} | by ${post.author} | categories: <% category_links = [] for category in post.categories: |