view.html.twig 1.3 KB

1234567891011121314151617181920212223242526
  1. {% block leftpanel %}
  2. <label class="panel-left-icon" for="panel-left-toggle" aria-hidden="true"
  3. tabindex="-1">{{ icon('menu', 'icon icon-left') | raw }}</label>
  4. <input type="checkbox" id="panel-left-toggle" aria-hidden="true" tabindex="-1">
  5. <section class="header-panel section-panel-left">
  6. <a id="anchor-left-panel" class="anchor-hidden" title="{{ 'Press tab to access selected region!' | trans }}"></a>
  7. <aside class="panel-content accessibility-target">
  8. {% if app.user %}
  9. <section class='section-widget section-padding' title="{{ 'Your profile information.' | trans }}">
  10. {% block profile_view %}{% include 'cards/profile/view.html.twig' with { actor: current_actor } %}{% endblock profile_view %}
  11. {{ block("profile_current_actor", "cards/navigation/view.html.twig") }}
  12. </section>
  13. {% else %}
  14. <section>
  15. {{ block("profile_security", "cards/navigation/view.html.twig") }}
  16. </section>
  17. {% endif %}
  18. {{ block("feeds", "cards/navigation/view.html.twig") }}
  19. {{ block("footer", "cards/navigation/view.html.twig") }}
  20. </aside>
  21. </section>
  22. {% endblock leftpanel %}