I want to realize the following thing: in my parameters.yml I have uploads_url: http://test.site.com
. It's a URL to Docker container with my images. Next, I have an entity
with names of this pictures.
I want to generate URL in twig
like this:
background-image: url({{ 'URL from parameters' + 'name of picture from `entity`' }})
At present time I have the second part of the previous expression (name of the picture). How can I generate the 1st part?