You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
427 B

5 years ago
<% if(isPostList){ %>
<h2 class="title">
<a href="<%- url_for(post.path) %>">
<%- post.title ? post.title : date(post.date, theme.date_format) %>
</a>
</h2>
<% } else { %>
<% if (post.title || page.title || config.title) { %>
5 years ago
<h1 class="title">
<a href="<%- url_for(post.path) %>">
<%- post.title ? post.title : date(post.date, theme.date_format) %>
</a>
</h1>
5 years ago
<% } %>
<% } %>