I'm trying to figure out if it is possible to put markup into different sections from within a partial. I have a few components I have built into sets in Bard and want to be able to inject any styles or scripts associated with that component automatically.
Ex.
{{ section:styles }}
<link rel="stylesheet" href="/css/component.css">
{{ /section:styles }}
<div class="component"></div>
{{ section:scripts }}
{{ /section:scripts }}
This does seem to work but only for the last set in a block...