templates/pages/components/mainHeader.html.twig line 1

Open in your IDE?
  1. {% if content.mainHeaderIsView %}
  2.     <div style="order: {{ content.mainHeaderOrder ?? -1 }}">
  3.         <modern-main-header
  4.                 title="{{ content.mainHeaderTitle }}"
  5.                 subtitle="{{ content.mainHeaderSubtitle }}"
  6.                 subtitle-link="{{ content.mainHeaderSubtitleLink }}"
  7.                 auto-size="{{ content.mainHeaderLongWords is same as (true) ? 'true' : 'false' }}"
  8.                 type="{{ content.mainHeaderType }}"
  9.                 video-type="{{ content.mainHeaderVideo ? content.mainHeaderVideo.getMimeType() : '' }}"
  10.                 video-url="{{ content.mainHeaderVideo ? content.mainHeaderVideo.getUrl() : '' }}"
  11.                 muted="{{ content.mainHeaderMuted is same as (true) ? 'true' : 'false' }}"
  12.                 image="{{ adapt_attribute('main_header.image', {'image': content.mainHeaderImage, 'imageMobile': content.mainHeaderImageMobile}) | json_encode }}"
  13.                 add-margin="{{ content.mainHeaderAddMargin }}"
  14.                 description="{{ content.mainHeaderDescription }}"
  15.                 description-link="{{ content.mainHeaderDescriptionLink }}"
  16.                 footer-text="{{ content.mainHeaderFooterText }}"
  17.                 footer-text-link="{{ content.mainHeaderFooterTextLink }}"
  18.                 theme="{{ content.mainHeaderTheme }}"
  19.                 text-color="{{ content.mainHeaderTextColor }}"
  20.                 background-color="{{ content.mainHeaderBackgroundColor }}"
  21.                 show-owerlay="{{ content.mainHeaderShowOwerlay is same as (true) ? 'true' : 'false' }}"
  22.                 info="{{ adapt_attribute('main_header.stats_info', {'data': content.mainHeaderWithImageInfo, 'request': app.request, 'type': type ?? 'stats'}) | json_encode }}"
  23.                 description-color="{{content.mainHeaderWithImageDescriptionColor ?? 'white'}}"
  24.         ></modern-main-header>
  25.     </div>
  26. {% endif %}