Switch to side-by-side view

--- a/compass-app/platforms/android/assets/www/index.html
+++ b/compass-app/platforms/android/assets/www/index.html
@@ -1,54 +1,58 @@
 <!DOCTYPE html>
 <!--
-    Licensed to the Apache Software Foundation (ASF) under one
-    or more contributor license agreements.  See the NOTICE file
-    distributed with this work for additional information
-    regarding copyright ownership.  The ASF licenses this file
-    to you under the Apache License, Version 2.0 (the
-    "License"); you may not use this file except in compliance
-    with the License.  You may obtain a copy of the License at
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
 
-    http://www.apache.org/licenses/LICENSE-2.0
+http://www.apache.org/licenses/LICENSE-2.0
 
-    Unless required by applicable law or agreed to in writing,
-    software distributed under the License is distributed on an
-    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-     KIND, either express or implied.  See the License for the
-    specific language governing permissions and limitations
-    under the License.
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
 -->
 <html>
-    <head>
-        <meta charset="utf-8" />
-        <meta name="format-detection" content="telephone=no" />
-        <!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
-        <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
-        <link rel="stylesheet" href="css/normalize.css">
-  		<link rel="stylesheet" href="css/style.css">
-  		<link rel="stylesheet" href="css/bootstrap.css">
-        <title>COMPASS</title>
-    </head>
-    <body>
-    	
-    	<script type="text/x-handlebars">
-		    <h2>Welcome to Ember.js</h2>
-		
-		    {{outlet}}
+	<head>
+		<meta charset="utf-8" />
+		<meta name="format-detection" content="telephone=no" />
+		<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
+		<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi" />
+		<link rel="stylesheet" href="css/normalize.css">
+		<link rel="stylesheet" href="css/style.css">
+		<link rel="stylesheet" href="css/bootstrap.css">
+		<title>COMPASS</title>
+	</head>
+	<body>
+
+		<script type="text/x-handlebars" id="questions">
+			<div class="navbar navbar-default navbar-fixed-top">
+			<div class="navbar-inner">
+			<ul class="nav navbar-nav">
+			<li><a class="brand" href="#">COMPASS SIMPLE DEMO</a></li>
+			</ul>
+			</div>
+			</div>
+			<div class="container">
+			<ul>
+			{{#each controller}}
+			<li>{{detail}}</li>
+			{{/each}}
+			</ul>
+			</div>
 		</script>
 
-		<script type="text/x-handlebars" id="index">
-		    <ul>
-		    {{#each item in model}}
-		      <li>{{item}}</li>
-		    {{/each}}
-		    </ul>
-		</script>
-      
-      
-	<script src="js/libs/jquery-1.10.2.js"></script>
-	<script src="js/libs/handlebars-1.1.2.js"></script>
-	<script src="js/libs/ember-1.3.1.js"></script>
-	<script src="js/libs/bootstrap.js"></script>
-	<script src="js/app.js"></script>
-    </body>
+		<script src="js/libs/jquery-1.10.2.js"></script>
+		<script src="js/libs/handlebars-1.1.2.js"></script>
+		<script src="js/libs/ember-1.3.1.js"></script>
+		<script src="js/libs/ember-data.js"></script>
+		<script src="js/libs/localstorage_adapter.js"></script>
+		<script src="js/libs/bootstrap.js"></script>
+		<script src="js/app.js"></script>
+	</body>
 </html>