Hello everyone,
I'm using Express and Marko (and I'm starting to really enjoy it). I want to progressively render the HTML and I have a common page template that could be summarized like this :
<html>
<async-fragment data-provider="data.header" var="header">${header}</async-fragment>
<async-fragment data-provider="data.content" var="footer">${content}</async-fragment>
<async-fragment data-provider="data.footer" var="footer">${footer}</async-fragment>
</html>
On some occasions, I would like my content to come from another marko template that would also contain some ordered <async-fragment>; is there a way to achieve this ? (If not exactly this, something similar).
Thanks for any help or tips you could give me. :)