Skip to content

Instantly share code, notes, and snippets.

@iwano
Last active December 15, 2015 07:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iwano/5224465 to your computer and use it in GitHub Desktop.
Save iwano/5224465 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Including jquery -->
<script src="http://code.jquery.com/jquery-1.9.1.min.js"> </script>
<!-- Including handlebars -->
<script src='https://raw.github.com/wycats/handlebars.js/1.0.0-rc.3/dist/handlebars.js'></script>
<!-- handlebars template -->
<script id="person-template" type="text/x-handlebars-template">
<div class="person">
<h1>{{name}}</h1>
<h2>{{email}}</h2>
<h3>{{city}}</h3>
</div>
</script>
</head>
<body>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment