Switch to side-by-side view

--- a
+++ b/compass-app/www/js/app.js
@@ -0,0 +1,11 @@
+App = Ember.Application.create();
+
+App.Router.map(function() {
+  // put your routes here
+});
+
+App.IndexRoute = Ember.Route.extend({
+  model: function() {
+    return ['red', 'yellow', 'blue'];
+  }
+});