Fork this to experiment with Ember.js

by Kerrick

HTML

<script src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.1.2/handlebars.min.js"></script>
<script src="http://builds.emberjs.com/tags/v1.2.2/ember.js"></script>
<script src="http://builds.emberjs.com/beta/ember-data.js"></script>
<script type="text/x-handlebars">
    <h1>Application Template</h1>
    {{outlet}}
</script>
<script type="text/x-handlebars" id="index">
    Index Template
</script>

CSS

body { padding: 1em; }

JavaScript

App = Ember.Application.create();