Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@leahtard
Last active June 9, 2022 18:32
Show Gist options
  • Star 24 You must be signed in to star a gist
  • Fork 8 You must be signed in to fork a gist
  • Save leahtard/328ad4ec8791643622ab00e13c9b8fd6 to your computer and use it in GitHub Desktop.
Save leahtard/328ad4ec8791643622ab00e13c9b8fd6 to your computer and use it in GitHub Desktop.
Get file url in node for Drupal 8 twig template
{# Get URL of single file field #}
{{ node.field_file.entity.uri.value }}
{# Get URL of multi file field #}
{{ node.field_file['#items'].entity.uri.value }}
{# Trun into link #}
{{ file_url(node.field_file.entity.uri.value) }}
{# Check if there is at least one value #}
{% if node.field_file[0] %}
// Do something...
{% endif %}
@bryankimani
Copy link

Saved me alot. Thanks for share

@danjdewhurst
Copy link

danjdewhurst commented Nov 10, 2017

How I love Drupal templating!

Worth noting, this works with paragraphs too. Just swap out node for paragraph.

@brookeheaton
Copy link

Brilliant. Also works with paragraphs like so: {{ paragraph.field_file.entity.uri.value }}

@bryankimani
Copy link

@brookeheaton thanks for share

@novia713
Copy link

novia713 commented Feb 8, 2019

this helped me a lot. thanks, dude! 👍

@frazras
Copy link

frazras commented Apr 11, 2019

If you want to get the full url for internal URLs eg: private:// use
{{ file_url(node.field_file.entity.uri.value) }}

@wakudrle
Copy link

@frazras ... Thanks for your clarification also. Helped a lot.

@fr0standsn0w
Copy link

I love it, thanks!!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment