From de89bbb00cb202bf0d71e505fcfc01709689f51f Mon Sep 17 00:00:00 2001 From: isaacs Date: Thu, 21 Jun 2012 19:44:58 -0700 Subject: [PATCH] blog: Show category in post metadata --- doc/blog.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/blog.html b/doc/blog.html index 03378c02ef..314d0266a8 100644 --- a/doc/blog.html +++ b/doc/blog.html @@ -9,7 +9,7 @@ #column1 h1 { clear:both; } - #colum1 { + #column1 { font-size: 14px; } #column1 li, #content h1 + p { @@ -92,8 +92,8 @@ %>

<%= post.author + ' - ' + - post.date.toUTCString().replace(/ GMT$/, '') - %>

+ post.date.toUTCString().replace(/ GMT$/, '') + ' - ' + %><%= post.category %>

<%- post.content %> @@ -149,8 +149,8 @@ %>

<%= post.author + ' - ' + - post.date.toUTCString().replace(/ GMT$/, '') - %>

+ post.date.toUTCString().replace(/ GMT$/, '') + ' - ' + %><%= post.category %>

<%- post.content %> <%