[1] Handlebars.js: Minimal Templating on Steroids ( (2013-05-31 18:21:33 +09:00 版)) <http://handlebarsjs.com/>
[2] Handlebars.js: Minimal Templating on Steroids (2015-11-20 14:09:23 +09:00 版) <http://handlebarsjs.com/>
You can deliver a template to the browser by including it in a <script> tag.<script id="entry-template" type="text/x-handlebars-template"><div class="entry"><h1>{{title}}</h1><div class="body">{{body}}</div></div></script>
You can deliver a template to the browser by including it in a <script> tag.
<script id="entry-template" type="text/x-handlebars-template">
<div class="entry">
<h1>{{title}}</h1>
<div class="body">
{{body}}
</div>
</script>