templates/platform/component/molecule/footer_signature.html.twig line 1

Open in your IDE?
  1. {% if componentKey is not defined %}
  2.     {% set componentKey = "footer_signature" %}
  3. {% endif %}
  4. {% set item_config = generateComponentOptions(value, componentKey)%}
  5. {% if canDisplayComponentByAcl(item_config) %}
  6.     <div class="footer-signature {% if value.class is defined %}{{ value.class }}{% endif %}">
  7.         {% embed '@component/_template/_atom_wrapper.html.twig' with {value: value.text, atom_key: componentKey ~ '.text'} %}
  8.             {% block atom %}
  9.                 {% include '@component/atom/paragraph.html.twig' with {'value': value} %}
  10.             {% endblock atom %}
  11.         {% endembed %}
  12.         {% embed '@component/_template/_atom_wrapper.html.twig' with {value: value.link, atom_key: componentKey ~ '.link'} %}
  13.             {% block atom %}
  14.                 {% include '@component/atom/link.html.twig' with {'link': value} %}
  15.             {% endblock atom %}
  16.         {% endembed %}
  17.         &nbsp;
  18.     </div>
  19. {% endif %}