fediparty/themes/starter/layout/_partial/featured.ejs
2018-07-05 04:18:42 +03:00

24 lines
687 B
Plaintext

<%
const date = post.date.format(config.date_format).split('-').join('.');
%>
<section class="">
<div class="section-title">
<h4><%- __('featured') %></h4>
</div>
<a href="<%- post.url %>" class="post__preview featured">
<img src="/<%- post.path %><%- post.banner%>" alt="featured post image">
<div class="post__content">
<p class="post__title u-emphasize u-center">
<%- post.title %>
</p>
<p class="post__text"><%- post.preview %></p>
<p class="post__meta u-emphasize">
<%= date %>
<span>by <% post.authors.map(function(author) { %><%= author.name %><i>, </i> <% }) %></span>
</p>
</div>
</a>
</section>