Security update to Drupal 8.4.6
[yaffs-website] / web / core / modules / image / templates / image-scale-summary.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation for a summary of an image scale effect.
5  *
6  * Available variables:
7  * - data: The current configuration for this resize effect, including:
8  *   - width: The width of the resized image.
9  *   - height: The height of the resized image.
10  *   - upscale: If images larger than their original size can scale.
11  * - effect: The effect information, including:
12  *   - id: The effect identifier.
13  *   - label: The effect name.
14  *   - description: The effect description.
15  *
16  * @ingroup themeable
17  */
18 #}
19 {% if data.width and data.height -%}
20   {{ data.width }}×{{ data.height }}
21 {%- else -%}
22   {% if data.width %}
23     {% trans %}
24       width {{ data.width }}
25     {% endtrans %}
26   {% elseif data.height %}
27     {% trans %}
28       height {{ data.height }}
29     {% endtrans %}
30   {% endif %}
31 {%- endif %}
32
33 {% if data.upscale %}
34   {% trans %}
35     (upscaling allowed)
36   {% endtrans %}
37 {% endif %}