templates/Press/Includes/userGuidelinesModal.html.twig line 1

Open in your IDE?
  1. <div class="modal fade custom-modal custom-modal--white" id="usageGuidelines" tabindex="-1" role="dialog" aria-labelledby="usageGuidelinesLabel" aria-hidden="true">
  2.     <div class="modal-dialog custom-modal__container custom-modal__container--xl" role="document">
  3.         <div class="custom-modal__content modal-content custom-modal__content--wide">
  4.             <div class="custom-modal__header">
  5.                 <button type="button" class="close custom-modal__close" data-dismiss="modal" aria-label="Close">
  6.                     <span class="icon icon-close" aria-hidden="true"></span>
  7.                     <span class="custom-modal__close-text">{{ 'press.schließen'|trans }}</span>
  8.                 </button>
  9.             </div>
  10.             <div class="custom-modal__body modal-body">
  11.                 {% if regions|length > 1 %}
  12.                     {{ include('Press/Includes/userGuidelineModalTabbing.html.twig', {regions: regions, styleModifierTabs: 'nav-tabs--full-width nav-tabs--light mb-3'}) }}
  13.                 {% else %}
  14.                     {{ pimcore_inc(regions|first.siteConfig.pressGuidlines) }}
  15.                 {% endif %}
  16.             </div>
  17.         </div>
  18.     </div>
  19. </div>