templates/games/memory.html.twig line 1

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