2018-11-01 01:35:09 +00:00
|
|
|
<% if (post.link) { %>
|
2018-09-10 09:21:59 +00:00
|
|
|
<h1 itemprop="name">
|
2018-09-23 06:24:51 +00:00
|
|
|
<a class="<%= class_name %>" href="<%- url_for(post.link) %>" itemprop="url"><%= post.title %></a>
|
2018-09-10 09:21:59 +00:00
|
|
|
</h1>
|
2018-11-01 01:35:09 +00:00
|
|
|
<% } else if (post.title) { %>
|
|
|
|
<% if (index) { %>
|
2018-09-10 09:21:59 +00:00
|
|
|
<h1 itemprop="name">
|
|
|
|
<a class="<%= class_name %>" href="<%- url_for(post.path) %>"><%= post.title %></a>
|
|
|
|
</h1>
|
|
|
|
<% } else { %>
|
2020-03-20 05:18:36 +00:00
|
|
|
<h1 class="<%= class_name %>" itemprop="headline name"><%= post.title %>
|
|
|
|
<%/* Share button */%>
|
2020-04-22 10:38:30 +00:00
|
|
|
<a id="share-button">
|
2020-03-20 05:18:36 +00:00
|
|
|
<svg viewBox="0 50 1635 1635">
|
|
|
|
<title>Share post</title>
|
|
|
|
<desc>Share icon</desc>
|
|
|
|
<use href="/svg/share.svg#share"/>
|
|
|
|
</svg>
|
|
|
|
</a>
|
|
|
|
</h1>
|
2018-09-10 09:21:59 +00:00
|
|
|
<% } %>
|
2018-11-01 01:35:09 +00:00
|
|
|
<% } %>
|