Skip to content

Instantly share code, notes, and snippets.

@bogvsdev
Last active May 1, 2020 19:14
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bogvsdev/6985d90ab6c5a868bc0f to your computer and use it in GitHub Desktop.
Save bogvsdev/6985d90ab6c5a868bc0f to your computer and use it in GitHub Desktop.
Drupal 8 twig, get image url
{% set the_image = item.content['#field_collection_item'].field_featurette_image %}
<img src="{{ file_url(the_image.entity.uri.value) }}" alt="{{ the_image.alt }}" title="{{ the_image.title }}">
or
<img src="{{file_url(node.field_hotel_image.entity.uri.value)}}" alt="3242">
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment