vendor/monsieurbiz/sylius-rich-editor-plugin/src/Resources/views/Shop/UiElement/image.html.twig line 1

Open in your IDE?
  1. {#
  2.     UI Element template
  3.     type: image
  4.     element fields :
  5.         image
  6.         alt
  7.         title
  8.         link
  9.         align
  10. #}
  11. {% if element.image is defined %}
  12. {% set align = element.align is defined and element.align is not empty ? element.align : 'inherit' %}
  13. <p style="text-align: {{align}};">
  14.     {% if element.link is not empty %}
  15.         <a href="{{ element.link }}">
  16.             <img class="ui fluid image" src="{{ element.image }}" alt="{{ element.alt|default('') }}" title="{{ element.title|default('') }}" />
  17.         </a>
  18.     {% else %}
  19.         <img class="ui fluid image" src="{{ element.image }}" alt="{{ element.alt|default('') }}" title="{{ element.title|default('') }}" />
  20.     {% endif %}
  21. </p>
  22. {% endif %}