templates/default/article.html.twig line 6

Open in your IDE?
  1. {% if clubsite or (editmode and document.path is defined and '/SeikoClub/' in document.path) %}
  2.     {% set _layout = 'seikoclub/layout.html.twig' %}
  3. {% else %}
  4.     {% set _layout = '@CoreShopFrontend/layout.html.twig' %}
  5. {% endif %}
  6. {% extends _layout %}
  7. {% block content %}
  8.     <div class="container">
  9.         {{ pimcore_areablock('articleblock', {
  10.             'allowed' : ['article'],
  11.             'limits' : {
  12.                 'article': 1,
  13.             }
  14.         }) }}
  15.     </div>
  16. {% endblock %}