-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
40 lines (36 loc) · 1.29 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en" ng-app='ordr'> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<!-- Set the viewport width to device width for mobile -->
<meta name="viewport" content="width=device-width" />
<title>Ordr: Rstaurant Mnu Systm</title>
<!-- Included CSS Files (Compressed) -->
<link rel="stylesheet" href="css/foundation.css">
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<div class="row">
<div class="twelve columns">
<h2> <a href="/">Ordr</a> </h2>
<hr>
<div class="row">
<div class="four columns" id="tables" ng-controller="TablesCtrl">
<h2>
Tables
</h2>
<a ng-href="#tables/{{table.id}}" class="panel six columns" ng-repeat="table in tables">{{table.id}}</a>
</div>
<div class="eight columns" id="order">
<div ng-view></div>
</div>
</div>
</div>
</div>
<script src="js/libs/angular.js"></script>
<script src="js/libs/underscore.js"></script>
<script src="js/app.js"></script>
</body>
</html>