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

Open in your IDE?
  1. {#
  2.     UI Element template
  3.     type: button_link
  4.     element fields :
  5.         label
  6.         link
  7.         align
  8. #}
  9. {% set align = element.align is defined and element.align is not empty ? element.align : 'center' %}
  10. <p style="text-align: {{align}};">
  11.     <a href="{{ element.link }}" class="ui primary button massive">{{ element.label }}</a>
  12. </p>