Skip to content

Instantly share code, notes, and snippets.

@toranb
Created April 9, 2014 03:26
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 toranb/10223421 to your computer and use it in GitHub Desktop.
Save toranb/10223421 to your computer and use it in GitHub Desktop.
the basic index.html file for eak-lite blog series
<!DOCTYPE html>
<html>
<head>
<title>example app</title>
</head>
<body>
<script src='js/vendor/jquery/jquery.min.js'></script>
<script src='js/vendor/handlebars/handlebars.js'></script>
<script src='js/vendor/ember/ember.min.js'></script>
<script src='js/app.js'></script>
<script type="text/x-handlebars" data-template-name="application">
{{outlet}}
</script>
<script type="text/x-handlebars" data-template-name="people">
<table>
{{#each person in controller}}
<tr>
<td>{{person.name}}</td>
</tr>
{{/each}}
</table>
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment