23 lines
674 B
Twig
23 lines
674 B
Twig
{% extends 'profile/master.twig' %}
|
|
{% from 'macros.twig' import pagination %}
|
|
{% from 'forum/macros.twig' import forum_topic_listing %}
|
|
|
|
{% block content %}
|
|
<div class="profile">
|
|
{% include 'profile/_layout/header.twig' %}
|
|
|
|
{% set sp = profile_topics_pagination.pages > 1
|
|
? '<div class="container profile__pagination">' ~ pagination(profile_topics_pagination, canonical_url) ~ '</div>'
|
|
: '' %}
|
|
|
|
{% if sp is not empty %}
|
|
{{ sp|raw }}
|
|
{% endif %}
|
|
|
|
{{ forum_topic_listing(profile_topics) }}
|
|
|
|
{% if sp is not empty %}
|
|
{{ sp|raw }}
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|