templates/pages/privacy/_content.html.twig line 1

Open in your IDE?
  1. <div class="privacyProtection-box">
  2.   <h3 class="privacyProtection-box__heading">{{ item.trans('title') }}</h3>
  3.   <p class="privacyProtection-box__content">
  4.     {{ item.trans('content')|nl2br }}
  5.     {% if item.linkUrl %}
  6.       <a href="{{ item.linkUrl }}" target="_blank">
  7.       {% if item.trans('link_label') %}{{ item.trans('link_label') }}{% else %}{{ item.linkUrl }}{% endif %}
  8.     </a>
  9.     {% endif %}
  10.   </p>
  11. </div>