diff --git a/doc/blog.html b/doc/blog.html index 502cace776..99feb4fd18 100644 --- a/doc/blog.html +++ b/doc/blog.html @@ -110,10 +110,12 @@ <% if (typeof post !== 'undefined') { // just one post on this page %> -

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

+

<%- + post.date.toUTCString().replace(/ GMT$/, '') + ' UTC' + + (post.author ? ' - ' + post.author : '') + + (post.category ? ' - ' + + post.category + '' : '') + %>

<%- post.content %> @@ -167,10 +169,14 @@ %>" class="permalink"><%- post.title %> -

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

+ +

<%- + post.date.toUTCString().replace(/ GMT$/, '') + ' UTC' + + (post.author ? ' - ' + post.author : '') + + (post.category ? ' - ' + + post.category + '' : '') + %>

+ <%- post.content %> <%