27 lines
692 B
Twig
27 lines
692 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{%- block title -%}
|
|
{{- 'subscriptions'|trans }} - {{ user.username|username(false) }} - {{ parent() -}}
|
|
{%- endblock -%}
|
|
|
|
|
|
{% block mainClass %}page-user page-user-subscriptions{% endblock %}
|
|
|
|
{% block header_nav %}
|
|
{% endblock %}
|
|
|
|
{% block sidebar_top %}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<header>
|
|
<h1 hidden>{{ 'subscriptions'|trans }}</h1>
|
|
<h2 hidden>{{ user.username|username }}</h2>
|
|
</header>
|
|
{% include('user/_options.html.twig') %}
|
|
{% include('user/_federated_info.html.twig') %}
|
|
<div id="content">
|
|
{% include 'layout/_magazine_activity_list.html.twig' with {list: magazines} %}
|
|
</div>
|
|
{% endblock %}
|