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.

23 lines
931 B

6 years ago
<article class="post reveal <%= (post.title) ? "" : "no-title" %>">
6 years ago
<%- partial('meta',{post:post}) %>
6 years ago
<section class="article typo">
6 years ago
<%- post.excerpt || post.description || post.content %>
<% if (post.readmore != false && (post.excerpt || post.description)) { %>
6 years ago
<div class="readmore">
6 years ago
<a href="<%- url_for(post.path) %>" class="flat-box">
<i class="fas fa-book-open fa-fw" aria-hidden="true"></i>
6 years ago
<%- __('post.read_more') %>
6 years ago
</a>
6 years ago
</div>
7 years ago
<% } %>
6 years ago
<% if (post.tags && post.tags.length) { %>
<div class="full-width auto-padding tags">
<% post.tags.each(function(item){ %>
6 years ago
<a href="<%- url_for(item.path) %>"><i class="fas fa-hashtag fa-fw"></i><%=item.name %></a>
6 years ago
<%})%>
</div>
<% } %>
</section>
7 years ago
</article>