templates/games/coloriage.html.twig line 1

Open in your IDE?
  1. {% set section = 'coloriage' %}
  2. {% extends 'base.html.twig' %}
  3. {% block title %}Pitch - Jeux - Coloriage{% endblock %}
  4. {% block body %}
  5. <div data-controller="coloriage" class="games">
  6. {% include '_elements/page-header.html.twig'
  7. with {
  8. breadcrumb: [
  9. { path:'home', label:"Accueil"},
  10. { path: 'jeux', label: "Toi et Pitch" },
  11. { label: "Coloriage" }
  12. ],
  13. back: [
  14. { path:'jeux' }
  15. ]
  16. }
  17. %}
  18. <iframe id="iframe-coloriage" title="Jeu : coloriage" width="100%" height="740" src="/games/coloriage/coloriage.html"></iframe>
  19. </div>
  20. {% endblock %}