+++ /dev/null
-<html>
- <head>
- <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
- <script type="text/javascript" src="handlebars-v1.1.2.js"></script>
- <script id="entry-template" type="text/x-handlebars-template">
- <div class="entry">
- <h1>{{title}}</h1>
- <div class="body">
- {{body}}
- </div>
- </div>
- </script>
- </head>
- <body>
- <div id="content"/>
- <script type="text/javascript">
- var source = $("#entry-template").html();
- var template = Handlebars.compile(source);
- var context = {title: "My New Post", body: "This is my first post!"}
- var html = template(context);
- $("#content").html(html);
- </script>
- </body>
-</html>