templates/la-fabrique/ingredients.html.twig line 1

Open in your IDE?
  1. {% set section = 'ingredients' %}
  2. {% extends 'base.html.twig' %}
  3. {% block title %}Pitch - Brioche Pasquier{% endblock %}
  4. {% block body %}
  5. <div data-controller="ingredients">
  6. {% include '_elements/page-header.html.twig'
  7. with {
  8. breadcrumb: [
  9. { path:'home', label:"Accueil"},
  10. { path:'factory', label:"La fabrique"},
  11. { label: "Les ingrédients" }
  12. ],
  13. back: [
  14. { path:'factory' }
  15. ]
  16. }
  17. %}
  18. <div class="ingredients__layers">
  19. <div class="ingredients__theme">
  20. {% include 'la-fabrique/ingredients/ingredients.svg' %}
  21. </div>
  22. <div class="ingredients__ui">
  23. {% include 'la-fabrique/ingredients/ui.svg' %}
  24. </div>
  25. </div>
  26. </div>
  27. {% endblock %}