Ember.js Starter Kit

Based on latest version (as of today) of the official Ember.js starter kit: https://github.com/emberjs/starter-kit Links to latest full-size versions of Handlebars, Ember, and Ember-Data.

by darthdeus

HTML

<script src="https://github.com/downloads/wycats/handlebars.js/handlebars-1.0.rc.1.js"></script>
<script src="https://gist.github.com/raw/4427466/a36a4f88a1a19f0b4ee38948af3bcdfa6c651d40/ember-latest.js"></script>
<script type="text/x-handlebars" data-template-name="application">
  <h1>Hello from Ember.js</h1>
</script>

JavaScript

App = Ember.Application.create();

App.ApplicationController = Ember.Controller.extend();
App.ApplicationView = Ember.View.extend({
  templateName: 'application'
});

App.Router = Ember.Router.extend(function(match) {
  match("/").to("home");        
});

App.initialize();