templates/games/attrappitch.html.twig line 1

Open in your IDE?
  1. {% set section = 'attrappitch' %}
  2. {% extends 'base.html.twig' %}
  3. {% block title %}Pitch - Jeux - Attrap'Pitch{% endblock %}
  4. {% block body %}
  5. <div data-controller="attrappitch" 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: "Attrap'Pitch" }
  12. ],
  13. back: [
  14. { path:'jeux' }
  15. ]
  16. }
  17. %}
  18. <div id="iframe-attrappitch-container" style="overflow: auto!important; -webkit-overflow-scrolling: touch!important;">
  19. <iframe id="iframe-attrappitch" title="Jeu : Attrap'Pitch" width="100%" height="100%" src="/games/attrappitch/index.html"></iframe>
  20. </div>
  21. </div>
  22. {% endblock %}