summaryrefslogtreecommitdiff
path: root/doc/blog.html
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-06-21 19:44:58 -0700
committerisaacs <i@izs.me>2012-06-21 19:45:11 -0700
commitde89bbb00cb202bf0d71e505fcfc01709689f51f (patch)
tree7b9c65eb0790eac97e572d292ead2547e74c153a /doc/blog.html
parent441e7928492b73b21b7d1d9dced4ee4537fc90c4 (diff)
downloadnode-new-de89bbb00cb202bf0d71e505fcfc01709689f51f.tar.gz
blog: Show category in post metadata
Diffstat (limited to 'doc/blog.html')
-rw-r--r--doc/blog.html10
1 files 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 @@
%>
<p class="meta"><%=
post.author + ' - ' +
- post.date.toUTCString().replace(/ GMT$/, '')
- %></p>
+ post.date.toUTCString().replace(/ GMT$/, '') + ' - '
+ %><a href="/<%= post.category %>/"><%= post.category %></a></p>
<%- post.content %>
@@ -149,8 +149,8 @@
%></a></h1>
<p class="meta"><%=
post.author + ' - ' +
- post.date.toUTCString().replace(/ GMT$/, '')
- %></p>
+ post.date.toUTCString().replace(/ GMT$/, '') + ' - '
+ %><a href="/<%= post.category %>/"><%= post.category %></a></p>
<%- post.content %>
</div>
<%