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

Open in your IDE?
  1. {% if content.overviewIsView %}
  2.     <div style="order: {{ content.overviewOrder ?? -1 }}">
  3.         <modern-overview
  4.                 title="{{ content.overviewTitle }}"
  5.                 subtitle="{{ content.overviewSubTitle }}"
  6.                 description="{{ content.overviewDescription }}"
  7.                 image-size="{{ content.overviewImageSize }}"
  8.                 cards="{{ adapt_attribute('overview.cards', {'cards': content.overviewCards, 'locale': app.request.locale, 'imageSize': content.overviewImageSize }) | json_encode }}"
  9.                 link="{{ adapt_attribute('overview.link', {'linkName': content.overviewLinkName, 'pageUuid': content.overviewLinkPage , 'locale': app.request.locale }) | json_encode }}"
  10.                 theme="{{ content.overviewTheme }}"
  11.                 text-color="{{ content.overviewTextColor }}"
  12.         ></modern-overview>
  13.     </div>
  14. {% endif %}