Handlebars seed
HTML
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.1.2/handlebars.min.js"></script>
<script type="text/x-handlebars" id="template">
{{hello}} {{hello}} {{aa}} aaa
</script>
JavaScript
var template = Handlebars.compile($('#template').html());
var context = {
hello: "World",
aa : "bbb"
}
var html = template(context);
$('body').html(html)