Hi guys,
I am looking to extend a template, say a base inspect view, and I want to be able to pass configurations for that parent view (see example). This is possible in twig (I'm currently investigating migration from twig to volt). Maybe this can be achieved another way, if so, how would you recommend?
{% extends '@staff/base.inspect.twig'
with {
'width': 500,
'columns': 2
}
%}
Thanks, Dave.