view.html.twig 1.2 KB

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