layout.html.twig 518 B

123456789101112131415161718192021
  1. {% extends 'PackagistWebBundle::layout.html.twig' %}
  2. {% block content %}
  3. {% if app.user is null %}
  4. <section class="row">
  5. {{ block('fos_user_content') }}
  6. </section>
  7. {% else %}
  8. <h2 class="title">
  9. {{ app.user.username }}
  10. </h2>
  11. <section class="row">
  12. <div class="col-md-3">
  13. {{ knp_menu_render('profile_menu', {'currentClass': 'active', 'allow_safe_labels': true}) }}
  14. </div>
  15. {{ block('fos_user_content') }}
  16. </section>
  17. {% endif %}
  18. {% endblock %}