12345678910111213141516171819202122232425262728293031 |
- {#
- /**
- * @file
- * Default theme implementation of an image.
- *
- * Available variables:
- * - attributes: HTML attributes for the img tag.
- * - style_name: (optional) The name of the image style applied.
- *
- * @see template_preprocess_image()
- *
- * @ingroup themeable
- */
- #}
- {% if style_name == "lightbox" %}
- {#
- <img{{ attributes }} />
- #}
- {# <pre>
- {{ dump(attributes) }}
- </pre> #}
- <a href="{{attributes.src}}" data-lightbox="lightbox" data-title="{{attributes.title}}">
- <img src="{{attributes.src}}" alt="">
- </a>
- {# <a href="{{attributes.src}}" data-lightbox="lightbox">image</a> #}
-
- {% else %}
-
- <img{{ attributes }} />
- {% endif %}
|