misuzu/templates/news/macros.twig

39 lines
1.7 KiB
Twig
Raw Normal View History

2018-04-16 00:33:54 +00:00
{% macro news_preview(post) %}
<div class="container news__preview">
<a href="/news.php?p={{ post.post_id }}" class="container__title container__title--link">
2018-04-16 00:33:54 +00:00
{{ post.post_title }}
</a>
<div class="news__preview__content">
2018-04-16 00:33:54 +00:00
<div class="news__preview__text">
{{ post.post_text|first_paragraph|parse_text('md')|raw }}
2018-04-16 00:33:54 +00:00
</div>
2018-04-16 00:33:54 +00:00
<div class="news__preview__info">
<time class="news__preview__date" datetime="{{ post.created_at|date('c') }}" title="{{ post.created_at|date('r') }}">
{{ post.created_at|time_diff }}
</time>
2018-07-15 02:15:12 +00:00
{% if post.user_id is not null %}
<a class="news__preview__user" href="/profile.php?u={{ post.user_id }}">
<div class="news__preview__user__name" style="{{ post.user_colour|html_colour }}">
{{ post.username }}
</div>
<div class="avatar news__preview__user__avatar" style="background-image:url('/profile.php?u={{ post.user_id }}&amp;m=avatar')"></div>
</a>
{% endif %}
<a href="/news.php?p={{ post.post_id }}#comments" style="color: inherit; text-decoration: none; display: block">
{% if post.post_comments < 1 %}
No comments
{% elseif post.post_comments == 1 %}
1 comment
{% else %}
{{ post.post_comments }} comments
{% endif %}
</a>
2018-04-16 00:33:54 +00:00
</div>
</div>
</div>
{% endmacro %}