templates/components/common/_button.html.twig line 1

Open in your IDE?
  1. {% if tag_type is not defined %}
  2.   {% set tag_type = "a" %}
  3. {% endif %}
  4. <{{ tag_type}}
  5.   {% if href is defined %} href="{{ href }}" {% endif %}
  6.   class="{{ class }}"
  7.   {% if target is defined %}target="{{ target }}"{% endif %}
  8. >
  9.   {{ text|nl2br }}
  10.   <img src="{{ asset(src) }}" alt="" style="width: {{ width }}px;height: {{ height }}px;">
  11. </{{ tag_type }}>