2018-04-16 00:33:54 +00:00
|
|
|
{% macro news_preview(post) %}
|
|
|
|
<div class="container news__preview">
|
|
|
|
<a href="/news.php?n={{ post.post_id }}" class="container__title container__title--link news__preview__title">
|
|
|
|
{{ 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-04-16 00:33:54 +00:00
|
|
|
<p><b><i><a href="/news.php?n={{ post.post_id }}">View full post</a></i></b></p>
|
|
|
|
</div>
|
|
|
|
<div class="news__preview__info">
|
|
|
|
<div class="news__preview__date">
|
|
|
|
{{ post.created_at }}
|
|
|
|
</div>
|
2018-05-16 02:58:21 +00:00
|
|
|
<a class="news__preview__user" href="/profile.php?u={{ post.user_id }}">
|
|
|
|
<div class="news__preview__user__name" style="color:{{ post.display_colour|colour_get_css }}">
|
|
|
|
{{ post.username }}
|
2018-04-17 21:50:21 +00:00
|
|
|
</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 }}&m=avatar')"></div>
|
2018-04-16 00:33:54 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endmacro %}
|