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.

24 lines
1.0 KiB

<article class="post <%- theme.style.shadow.card ? 'card-shadow' : '' %> <%- 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">
5 years ago
<%- post.excerpt || post.description %>
4 years ago
<% if (post.readmore != false && (post.link || post.path)) { %>
4 years ago
<div class="button readmore">
4 years ago
<a href="<%- url_for(post.link || post.path) %>" class="flat-box">
5 years ago
<i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
<%- __('post.read_more') %>
</a>
</div>
<% } %>
</div>
<% if (post.tags && post.tags.length) { %>
<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>
<% } %>
</section>
7 years ago
</article>