bundles/FoxHabbit/BasisBundle/Resources/views/Templates/snippet-section.html.twig line 2

Open in your IDE?
  1. {% set layout = 'snippet-section-' ~ (editmode ? 'editmode' : 'frontend') %}
  2. {% extends '@FoxHabbitBasis/Layout/' ~ layout ~ '.html.twig' %}
  3. {% block content %}
  4.     {% if editmode %}
  5.     <div class="alert alert-dark m-0">
  6.         Beginn Section-Snippet-Bereich
  7.     </div>
  8.     {% endif %}
  9.     {{pimcore_areablock('content', {
  10.         allowed: [
  11.             'basisbundle-topnav',
  12.             'basisbundle-footer',
  13.             'basisbundle-breadcrumb',
  14.             'basisbundle-header',
  15.             'basisbundle-section',
  16.             'basisbundle-section-accordion',
  17.             'basisbundle-section-cssgrid',
  18.             'basisbundle-section-cssgrid-predefined',
  19.             'basisbundle-section-scheduled',
  20.             'basisbundle-section-image',
  21.             'basisbundle-section-video',
  22.             'basisbundle-section-googlemap',
  23.             'basisbundle-section-inter-section',
  24.             'basisbundle-section-slickslider',
  25.             'basisbundle-section-placeholder',
  26.             'basisbundle-section-snippet',]
  27.     })}}
  28.     {% if editmode %}
  29.     <div class="alert alert-dark m-0">
  30.         Ende Section-Snippet-Bereich
  31.     </div>
  32.     {% endif %}
  33. {% endblock %}