templates/games/papertoys.html.twig line 1

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