Hello!
I'm working on some application and I would like to have a little bit more dynamic layout of Volt file. I'm using partials for header, navigation and footer. Instead of writing divs for widgets (widgets are just elements around content like <div class="space"><div class="widget">[content]</div></div>) I would like to use more extends in one Volt file, to achieve the same effect. So instead of writing those divs, I would just write extends and block where I need to put the content.
After looking to the documentation the nearest thing are partials, but then I cannot put a lot of content in it without creating variable and putting html in php string. It is possible to do what I think without much work?
Thank you for help! :)