src/Eccube/Resource/template/default/block.twig line 1

Open in your IDE?
  1. {#
  2. This file is part of EC-CUBE
  3. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  4. http://www.ec-cube.co.jp/
  5. For the full copyright and license information, please view the LICENSE
  6. file that was distributed with this source code.
  7. #}
  8. {% for Block in Blocks %}
  9.     <!-- ▼{{ Block.name }} -->
  10.     {% if Block.use_controller %}
  11.         {{ render(path('block_' ~ Block.file_name)) }}
  12.     {% else %}
  13.         {{ include_dispatch('Block/' ~ Block.file_name ~ '.twig') }}
  14.     {% endif %}
  15.     <!-- ▲{{ Block.name }} -->
  16. {% endfor %}