2018-03-12 20:31:14 +01:00
|
|
|
|
|
|
|
<%
|
2018-06-21 02:05:40 +02:00
|
|
|
const date = post.date.format(config.date_format).split('-').join('.');
|
2018-03-12 20:31:14 +01:00
|
|
|
%>
|
|
|
|
|
|
|
|
<section class="">
|
|
|
|
<div class="section-title">
|
|
|
|
<h4><%- __('featured') %></h4>
|
|
|
|
</div>
|
2019-12-13 21:14:15 +01:00
|
|
|
<a href="<%- url_for(post.url) %>" class="post__preview featured">
|
2018-10-14 20:09:20 +02:00
|
|
|
<div class="post__image">
|
2019-12-13 21:14:15 +01:00
|
|
|
<img src="/<%- url_for(post.url + '/' + post.banner) %>" alt="featured post image">
|
2018-10-14 20:09:20 +02:00
|
|
|
</div>
|
|
|
|
|
2018-03-12 20:31:14 +01:00
|
|
|
<div class="post__content">
|
2018-06-04 16:30:53 +02:00
|
|
|
<p class="post__title u-emphasize u-center">
|
2018-03-12 20:31:14 +01:00
|
|
|
<%- post.title %>
|
|
|
|
</p>
|
|
|
|
<p class="post__text"><%- post.preview %></p>
|
|
|
|
<p class="post__meta u-emphasize">
|
|
|
|
<%= date %>
|
2018-07-05 03:18:42 +02:00
|
|
|
<span>by <% post.authors.map(function(author) { %><%= author.name %><i>, </i> <% }) %></span>
|
2018-03-12 20:31:14 +01:00
|
|
|
</p>
|
|
|
|
</div>
|
2018-03-20 18:51:15 +01:00
|
|
|
</a>
|
2018-03-12 20:31:14 +01:00
|
|
|
</section>
|