Version 1
[yaffs-website] / web / core / themes / stable / templates / field / image-formatter.html.twig
1 {#
2 /**
3  * @file
4  * Theme override 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 #}
14 {% if url %}
15   <a href="{{ url }}">{{ image }}</a>
16 {% else %}
17   {{ image }}
18 {% endif %}