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

Open in your IDE?
  1. {% if content.advantagesIsView %}
  2.     <div style="order: {{ content.advantagesOrder ?? -1 }}">
  3.         <modern-advantages
  4.                 title="{{ content.advantagesTitle }}"
  5.                 description="{{ content.advantagesDescription }}"
  6.                 button-title="{{ content.advantagesButtonTitle }}"
  7.                 button-url="{{ content.advantagesButtonUrl }}"
  8.                 advantages="{{ content.advantagesAdvantages | json_encode }}"
  9.         ></modern-advantages>
  10.     </div>
  11. {% endif %}