Last active
December 28, 2015 19:09
-
-
Save brentschooley/7548753 to your computer and use it in GitHub Desktop.
Example template for basic Ember.js app without build tools.
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
<script type="text/x-handlebars"> | |
<h2>Welcome to Ember.js</h2> | |
{{outlet}} | |
</script> | |
<script type="text/x-handlebars" data-template-name="index"> | |
<ul> | |
{{#each item in model}} | |
<li>{{item}}</li> | |
{{/each}} | |
</ul> | |
</script> | |
<script type="text/x-handlebars" data-template-name="foo"> | |
{{more-foo "blah"}} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment