You are here

image-url-formatter.html.twig in Image URL Formatter 8

Default theme implementation to display a formatted image field.

Available variables:

  • image: A collection of image data.
  • image_style: An optional image style.
  • url: An optional URL the image can be linked to.

File

templates/image-url-formatter.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a formatted image field.
  5. *
  6. * Available variables:
  7. * - image: A collection of image data.
  8. * - image_style: An optional image style.
  9. * - url: An optional URL the image can be linked to.
  10. *
  11. * @see template_preprocess_image_formatter()
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. {% spaceless %}
  17. {% if url %}
  18. {{ url }}
  19. {% else %}
  20. {{ image }}
  21. {% endif %}
  22. {% endspaceless %}