Cannot use style system for the components that are included in the html
The page rendering component of my template just contains like below and there is no layout container for drag-and-drop components.
<div class="container-class">
<div class="container-class-child">
<sly data-sly-resource="${'title' @ resourceType='abc/components/content/title', decorationTagName='div'}"></sly>
<sly data-sly-resource="${'content' @ resourceType='abc/components/content/text', decorationTagName='div'}"></sly>
</div>
other html here
</div>
How could we use the style system for such components? as there is no way to add the policy for the title or text components in the template?
is there any other way to somehow load the policies for those kind of components which are included in html?
Thanks in advance.