I try to follow the example 1 from (https://github.com/linkedin/dustjs/wiki/Dust-little-less-know-language-constructs) tutorial. Then I do my testing as below:
partial.tl
{+greeting} Hola {/greeting}
{+world} World {/world}
Main.html
<script type="text/x-template" id="itemTemplate">
{>partial/}
</script>
But it didn't works. If you know how to do partial template, please show me how. Dust.js tutorial / guide is really hard to find on internet.
Thank you.