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
895 B

6 years ago
<article class="post 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 %>
<% if (post.readmore != false && post.path) { %>
5 years ago
<div class="readmore">
<a href="<%- url_for(post.path) %>" class="flat-box">
<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-hashtag fa-fw"></i><%=item.name %></a>
5 years ago
<%})%>
</div>
<% } %>
</section>
7 years ago
</article>