templates/frontend-eforum/content.html.twig line 1

Open in your IDE?
  1. {% if productsInCategory is not defined %}
  2.     {% set productsInCategory = null %}
  3. {% endif %}
  4. {% for key, module in modules %}
  5.     {% set moduleName = key|split("_") %}
  6.     {% include '/frontend-eforum/_partials/modules/' ~ moduleName[0] ~ '.html.twig' with {
  7.         module: module,
  8.         moduleKey: key,
  9.         injectBreadcrumbs: injectBreadcrumbs is defined and moduleName[0] == injectBreadcrumbs ? true : false,
  10.         productsInCategory: productsInCategory
  11.     } %}
  12. {% endfor %}