{% macro news_preview(post) %} {% from 'macros.twig' import container_title %}
{{ container_title(post.post_title, '/news.php?p=' ~ post.post_id) }}
{{ post.post_text|first_paragraph|parse_text(constant('MSZ_PARSER_MARKDOWN'))|raw }}
{% if post.user_id is not null %}
{{ post.username }}
{% endif %}
{% endmacro %}