templates/pages/rapper-detail.html.twig line 1

Open in your IDE?
  1. {% extends "base.html.twig" %}
  2. {% block title %}Rapper detail{% endblock %}
  3. {% block bodyClass %}rappersBody{% endblock %}
  4. {% import "components/profileMacros.html.twig" as profileMacros %}
  5. {% block body %}
  6.     <section id="profile" class="profile" style="background-color: #eee;">
  7.         <div class="container py-5">
  8.             {{ profileMacros.renderProfilePage('rapperProfile',rapper, rapper.client,null, latestBattles,openedBattles) }}
  9.         </div>
  10.     </section>
  11. {% endblock %}