04a98a355976be5b693d526d750db0ec0c3faa3c
[yaffs-website] / 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  * - path: An optional array containing the link 'path' and link 'options'.
10  * - url: An optional URL the image can be linked to.
11  *
12  * @see template_preprocess_image_formatter()
13  */
14 #}
15 {% if url %}
16   <a href="{{ url }}">{{ image }}</a>
17 {% else %}
18   {{ image }}
19 {% endif %}