2021-12-01 20:13:24 +00:00
|
|
|
{% block leftpanel %}
|
2022-01-19 18:21:51 +00:00
|
|
|
<label class="panel-left-icon" for="toggle-panel-left" tabindex="-1">{{ icon('menu', 'icon icon-left') | raw }}</label>
|
|
|
|
<a id="anchor-left-panel" class="anchor-hidden" tabindex="0" title="{{ 'Press tab followed by a space to access left panel' | trans }}"></a>
|
|
|
|
<input type="checkbox" id="toggle-panel-left" tabindex="0" title="{{ 'Open left panel' | trans }}">
|
2021-12-01 20:13:24 +00:00
|
|
|
|
2022-01-19 18:21:51 +00:00
|
|
|
<aside class="section-panel section-panel-left">
|
2022-01-19 23:54:45 +00:00
|
|
|
<section class="panel-content accessibility-target">
|
2022-01-19 18:21:51 +00:00
|
|
|
{% if app.user %}
|
2022-01-19 23:54:45 +00:00
|
|
|
<section class='frame-section frame-section-padding' title="{{ 'Your profile information.' | trans }}">
|
2022-02-06 21:37:04 +00:00
|
|
|
{% block profile_view %}{% include 'cards/blocks/profile.html.twig' with { actor: current_actor } %}{% endblock profile_view %}
|
|
|
|
{{ block("profile_current_actor", "cards/blocks/navigation.html.twig") }}
|
2022-01-19 18:21:51 +00:00
|
|
|
</section>
|
|
|
|
{% else %}
|
|
|
|
<section>
|
2022-02-06 21:37:04 +00:00
|
|
|
{{ block("profile_security", "cards/blocks/navigation.html.twig") }}
|
2022-01-19 18:21:51 +00:00
|
|
|
</section>
|
|
|
|
{% endif %}
|
2021-12-01 20:13:24 +00:00
|
|
|
|
2022-02-06 21:37:04 +00:00
|
|
|
{{ block("feeds", "cards/blocks/navigation.html.twig") }}
|
2021-12-01 20:13:24 +00:00
|
|
|
|
2022-02-06 21:37:04 +00:00
|
|
|
{{ block("footer", "cards/blocks/navigation.html.twig") }}
|
2022-01-19 23:54:45 +00:00
|
|
|
</section>
|
2022-01-19 18:21:51 +00:00
|
|
|
</aside>
|
2021-12-01 20:13:24 +00:00
|
|
|
{% endblock leftpanel %}
|