Is it possible to add an entire directory using volt?
{# Rather than doing this: #}
{{ javascript_include('js/file1.js') }}
{{ javascript_include('js/file2.js') }}
{{ javascript_include('js/nested/file3.js') }}
{# Could we do something like this to recursively include all files of type '.js' #}
{{ javascript_include('js/**/*.js') }}
Is this possible, in one way or another?