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|raw }}
  10.   <img src="{{ asset(src) }}" alt="" style="width: {{ width }}px;height: {{ height }}px;" class="src_class">
  11.   {% if hover_src is defined %}
  12.   <img src="{{ asset(hover_src) }}" alt="" style="width: {{ width }}px;height: {{ height }}px;" class="hover">
  13.   {% endif %}
  14. </{{ tag_type }}>