1
0
mirror of https://git.feneas.org/feneas/fediverse.git synced 2025-01-25 17:58:38 +01:00

17 lines
485 B
Plaintext
Raw Normal View History

2018-03-12 22:31:14 +03:00
<%
const date = post.date.format(config.date_format).split('-').join('.');
2018-03-12 22:31:14 +03:00
%>
<section class="urgent">
<div class="section-title">
<h4><%- __('wanted') %></h4>
</div>
<div class="post__preview wanted">
<%- truncate(strip_html(post.preview), {length: 155, omission: '...'}) %>
<p class="post__meta u-emphasize">
<span><%- __('details') %> <a href="<%- url_for(post.url) %>"><%- __('here') %>.</a></span> <span><%= date %></span>
2018-03-12 22:31:14 +03:00
</p>
</div>
</section>