fediparty/themes/starter/layout/_partial/featured.ejs

27 lines
751 B
Plaintext
Raw Normal View History

2018-03-12 19:31:14 +00:00
<%
const date = post.date.format(config.date_format).split('-').join('.');
2018-03-12 19:31:14 +00:00
%>
<section class="">
<div class="section-title">
<h4><%- __('featured') %></h4>
</div>
<a href="<%- url_for(post.url) %>" class="post__preview featured">
2018-10-14 18:09:20 +00:00
<div class="post__image">
<img src="/<%- url_for(post.url + '/' + post.banner) %>" alt="featured post image">
2018-10-14 18:09:20 +00:00
</div>
2018-03-12 19:31:14 +00:00
<div class="post__content">
<p class="post__title u-emphasize u-center">
2018-03-12 19:31:14 +00:00
<%- 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>
2018-03-12 19:31:14 +00:00
</p>
</div>
2018-03-20 17:51:15 +00:00
</a>
2018-03-12 19:31:14 +00:00
</section>