-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.html
More file actions
19 lines (19 loc) · 707 Bytes
/
dev.html
File metadata and controls
19 lines (19 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<html ng-app="prisonDataApp" ng-cloak ng-controller="MainCtrl">
<head>
<title>Worldwide Incarceration Data</title>
<link rel="stylesheet" type="text/css" href="app/css/vendor/select2/select2.css">
<link rel="stylesheet" type="text/css" href="app/css/prison-data.css">
<meta name="viewport" content="width=1280">
</head>
<body>
<div id="page">
<h1 id="site-title"><a ng-href="#">Prison Data</a></h1>
<ul id="nav" ng-controller="navCtrl">
<li ng-repeat="path in paths" ng-class="setClass(path.path)"><a ng-href="#{{path.path}}">{{path.label}}</a></li>
</ul>
<div id="main" ng-view></div>
</div>
<script src="app/js/prison-data.js"></script>
</body>
</html>