Created
April 16, 2019 10:52
-
-
Save thamas/5fbcf46bacfc0eb9387234f0cc232dde to your computer and use it in GitHub Desktop.
Get Drupal (media) image in Twig template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# | |
Source: https://youtu.be/jNqXZ4Jb2No?t=822 | |
DrupalCon Seattle 2019: Pattern Lab: The Definitive How-to | |
#} | |
{% set img = node.field_img.entity.getFileUri() %} | |
{# result: public://images/ocean.jpg #} | |
{% set imgUrl = file_url(img) %} | |
{# result: /sites/default/files/ocean.jpg #} | |
{# requires Twig Tweak Drupal module #} | |
{% set smallImgUrl = img | image_style('small') %} | |
{# result: /sites/default/files/styles/small/ocean.jpg #} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment