How to get an image srcset inside page.html.twig in Drupal 8?

599 Views Asked by At

I've figured out how to get the image link:

{{ node.myfieldname.entity.uri.value }}

I've been poking around with kint for a bit now, but can't figure out if there is a srcset anywhere.

When loading the image normally through {{ content }} it does display a srcset, so it should have one. Just not sure if it is already available on the page.html.twig or where to find it.

The actual goal is to retreive the image srcset to use the image as a background. I'm trying to retreive multiple images to use as backgrounds for multiple div's that are defined in my page--front.html.twig

2

There are 2 best solutions below

0
On BEST ANSWER

Solved this by creating a custom block for my image, that only shows the image. Then added the custom block to my page.html.twig

Not the prettiest solution, but easy and effective.

1
On

Getting access to all the node information at the page template level generally means large and painful selectors and extra rendering. It's generally easier to create a helper function and hook within your theme file to make the values easier to access.

Depending on the details of your use case the Background Image Formatter module may do what you need without much custom code.

If that approach doesn't work for you consider a template_preprocess_node() to find and extract the values you want from the field. You can move them into simple to use variables for the template.