misuzu/views/mio/news/macros.twig

25 lines
1.2 KiB
Twig
Raw Normal View History

2018-04-16 00:33:54 +00:00
{% macro news_preview(post) %}
<div class="container news__preview">
2018-05-16 20:48:33 +00:00
<a href="/news.php?p={{ post.post_id }}" class="container__title container__title--link news__preview__title">
2018-04-16 00:33:54 +00:00
{{ post.post_title }}
</a>
<div class="container__content news__preview__content">
<div class="news__preview__text">
2018-05-16 02:58:21 +00:00
{{ post.post_text|first_paragraph|raw }}
2018-05-16 20:48:33 +00:00
<p><b><i><a href="/news.php?p={{ post.post_id }}">View full post</a></i></b></p>
2018-04-16 00:33:54 +00:00
</div>
<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-05-16 02:58:21 +00:00
<a class="news__preview__user" href="/profile.php?u={{ post.user_id }}">
2018-07-06 01:28:06 +00:00
<div class="news__preview__user__name" style="{{ post.user_colour|html_colour }}">
2018-05-16 02:58:21 +00:00
{{ post.username }}
</div>
2018-05-16 02:58:21 +00:00
<div class="avatar news__preview__user__avatar" style="background-image:url('/profile.php?u={{ post.user_id }}&amp;m=avatar')"></div>
2018-04-16 00:33:54 +00:00
</a>
</div>
</div>
</div>
{% endmacro %}