how to have custom content on my custom template (included via data-sly-include)?
So I have the following HTL code that includes section templates
<section>
<sly data-sly-resource="/content/config/header"></sly>
</section>
<section>
<sly data-sly-resource="/content/config/section1"></sly>
</section>
<section>
<sly data-sly-resource="/content/config/section2"></sly>
</section>
<section>
<sly data-sly-resource="/content/config/footer"></sly>
</section>
I created a new page using this template and it seems to be working fine. My issue is that changes I made on my page are reflected the original file.
example:
On the section2 part (inside the page I created using the template as base), I added a new RTE for my custom content. When I opened /content/config/section2, my RTE is there. Is there a way to prevent this? or perhaps a workaround?
Thanks!