mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
blog: Show category in post metadata
This commit is contained in:
@@ -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>
|
||||
<%
|
||||
|
||||
Reference in New Issue
Block a user