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.

HTML

<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css">
<script src="https://raw.github.com/wycats/handlebars.js/1.0.0-rc.3/dist/handlebars.js"></script>
<script src="https://raw.github.com/emberjs/ember.js/release-builds/ember-1.0.0-rc.1.js"></script>
<script type="text/x-handlebars" data-template-name="application">
    <h1>Introduction to Ember Router v2</h1>
    <nav>
        {{#linkTo "index"}}Home{{/linkTo}}
        {{#linkTo "blog"}}Blog{{/linkTo}}
    </nav>
    {{outlet}}
</script>

<script type="text/x-handlebars" data-template-name="index">
    Welcome to our web site
</script>

<script type="text/x-handlebars" data-template-name="blog">
    Our company blog.
    //{{linkTo "index"}}Return to Home{{/linkTo}} 
</script>

CSS

.active {
    color:red
}

JavaScript

var App = Ember.Application.create();

App.Router.map(function() {
    this.resource('blog'); 
});