diff --git a/layout/_meta/author.ejs b/layout/_meta/author.ejs index 39f0641..0ed69fc 100755 --- a/layout/_meta/author.ejs +++ b/layout/_meta/author.ejs @@ -1,6 +1,6 @@ <% if(post.author || config.author){ %>
- + <%- post.author || config.author %> diff --git a/layout/_meta/categories.ejs b/layout/_meta/categories.ejs index 0a1f5f8..144076f 100755 --- a/layout/_meta/categories.ejs +++ b/layout/_meta/categories.ejs @@ -8,7 +8,7 @@ }); %>
- + <%- cats.join(' / ') %> diff --git a/layout/_meta/tags.ejs b/layout/_meta/tags.ejs index 5b4d646..68ddf58 100644 --- a/layout/_meta/tags.ejs +++ b/layout/_meta/tags.ejs @@ -2,7 +2,7 @@ <% var items = []; post.tags.each(function(item){ - items.push(''); + items.push(''); }); %> <%- items.join(' ') %> diff --git a/layout/_partial/post.ejs b/layout/_partial/post.ejs index 3e1c7db..b98ede3 100755 --- a/layout/_partial/post.ejs +++ b/layout/_partial/post.ejs @@ -15,7 +15,7 @@ <% if (post.tags && post.tags.length) { %>
<% post.tags.each(function(item){ %> - <%=item.name %> + <%=item.name %> <%})%>
<% } %>