misuzu/templates/profile/posts.twig

24 lines
669 B
Twig
Raw Normal View History

2019-03-10 21:18:33 +00:00
{% extends 'profile/master.twig' %}
{% from 'macros.twig' import pagination %}
2019-05-09 16:50:18 +00:00
{% from 'forum/macros.twig' import forum_post_listing %}
2019-03-10 21:18:33 +00:00
{% block content %}
<div class="profile">
{% include 'profile/_layout/header.twig' %}
2019-05-09 16:50:18 +00:00
{% set sp = profile_posts_pagination.pages > 1
? '<div class="container profile__pagination">' ~ pagination(profile_posts_pagination, canonical_url) ~ '</div>'
: '' %}
{% if sp is not empty %}
{{ sp|raw }}
{% endif %}
{{ forum_post_listing(profile_posts) }}
{% if sp is not empty %}
{{ sp|raw }}
{% endif %}
2019-03-10 21:18:33 +00:00
</div>
{% endblock %}