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.

28 lines
1.2 KiB

<article class="post white-box <%- theme.style.shadow.card ? 'card-shadow' : '' %> <%- theme.style.blur && theme.style.blur.body ? 'body-blur' : '' %> reveal <%= (post.title) ? "" : "no-title" %>">
5 years ago
<%- partial('meta',{post:post, position:'header'}) %>
5 years ago
<section class="article typo">
<div class="article-entry" itemprop="articleBody">
<%- post.excerpt || post.description || post.content %>
<% if ((post.readmore != false) && (post.excerpt || post.description || post.link)) { %>
<% if (theme.readmore) { %>
<div class="button readmore">
<a href="<%- url_for(post.link || post.path) %>" class="flat-box">
<i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
<%- __('post.read_more') %>
</a>
</div>
<% } else { %>
<% } %>
5 years ago
<% } %>
</div>
<!-- <% if (post.tags && post.tags.length) { %>
5 years ago
<div class="full-width auto-padding tags">
<% post.tags.each(function(item){ %>
5 years ago
<a href="<%- url_for(item.path) %>" rel="nofollow"><i class="fas fa-tag fa-fw"></i> <%=item.name %></a>
5 years ago
<%})%>
</div>
<% } %> -->
5 years ago
</section>
7 years ago
</article>