templates/default/components/atoms/image-link/image-link.html.twig line 1

Open in your IDE?
  1. {% import 'macros/storyblok.html.twig' as storyblok %}
  2. <a
  3. href="{{ storyblok.storyblokLink(href)|spaceless }}"
  4. {% if target is defined and target != "" %}target="{{ target }}"{% endif %}
  5. class="{{ class|default('image-link') }}"
  6. {{ attributes|default([])|getAttributes }}
  7. >
  8. {% include 'components/atoms/image/image.html.twig' with {
  9. 'src': src|default,
  10. 'alt': alt|default,
  11. 'class': imageClass|default,
  12. 'width': width|default,
  13. 'height': height|default
  14. } %}
  15. </a>