Last active
December 30, 2015 07:39
-
-
Save mjumbewu/7797761 to your computer and use it in GitHub Desktop.
Simple static handlebars.js renderer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.1.2/handlebars.min.js"></script> | |
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> | |
</head> | |
<body> | |
<!-- Your handlebars template goes below... --> | |
<script id="my-one-template" type="text/x-handlebars-template"> | |
{{#each people}} | |
<p>{{first}} {{last}}</p> | |
{{/each}} | |
</script> | |
<div class="render-space"></div> | |
<script> | |
var source = $('#my-one-template').html(); | |
var template = Handlebars.compile(source); | |
// The path to your JSON file goes below... | |
$.getJSON('test-data.json', function(data) { | |
var html = template(data); | |
$('.render-space').html(html); | |
}); | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"people": [ | |
{"first": "Frank", "last": "Hebbert"}, | |
{"first": "Mjumbe", "last": "Poe"} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment