I have tried everything I can and I can't get an image to load with the twig image manipulation tag from a global directory. I basically want this to work on any page:
{{ page.media['/images/page-bg.jpg'].cropZoom(1000,150).quality(95).url() }}
I created a folder in user/pages called 'images' and put my image in there but it won't load. I also created a folder user/images and tried to load it from there but no cigar:
{{ page.media['/user/images/page-bg.jpg'].cropZoom(1000,150).quality(95).url() }}
Any ideas?