I'm passing an assets_base_url variable to my view.
The following works for loading a stylesheet.
<link rel="stylesheet" href="{{ assets_base_url }}css/app.css">
However, I was wondering if it was possible to use that variable within the stylesheet_link method to output the entire tag. I tried it this way, but it doesn't work.
{{ stylesheet_link( assets_base_url . 'css/app.css') }}