Files
isTommyOnVistabreak.xyz/blog/tparnell-travel/themes/landscape/layout/_partial/post/title.ejs
Tommy Parnell 87111bd5de first post
2016-08-13 16:44:25 +01:00

15 lines
466 B
Plaintext

<% if (post.link){ %>
<h1 itemprop="name">
<a class="<%= class_name %>" href="<%- url_for(post.link) %>" target="_blank" itemprop="url"><%= post.title %></a>
</h1>
<% } else if (post.title){ %>
<% if (index){ %>
<h1 itemprop="name">
<a class="<%= class_name %>" href="<%- url_for(post.path) %>"><%= post.title %></a>
</h1>
<% } else { %>
<h1 class="<%= class_name %>" itemprop="name">
<%= post.title %>
</h1>
<% } %>
<% } %>