Urls in srcset are escaped using `html` mode: ```smarty srcset="{$imageUrl|escape:'html':'UTF-8'} 211w" ``` It should be escaped using `url`, otherwise we have problems with spaces in path: ```smarty srcset="{$imageUrl|escape:'url':'UTF-8'} 211w" ```