-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·48 lines (42 loc) · 1.47 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
41
42
43
44
45
46
47
48
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>13Scoobie - Home</title>
<link rel="stylesheet" type="text/css" href="css/angulardemo.css">
</head>
<body>
<div class="wrapper" ng-app="leftHandNav">
<!-- Left hand Nav -->
<header>
<h1>About Me:</h1>
<div ng-controller="leftNavController">
<div ng-repeat="nav in navigation">
<p class="view"><a ng-href="{{nav.href}}">{{nav.title}}</a><br /><small><span class="leftDescription">{{nav.description}}</span></small></p>
</div>
</div>
</header>
<!-- Right Hand Content -->
<section id="main">
<h1>Projects/Topics/Etc.</h1>
<hr/>
<div ng-controller="rightHandController">
<div ng-repeat="right in rightContent">
<h2><a ng-href="{{right.href}}">{{right.title}}</a></h2>
<span>{{right.testField}}</span>
<p>{{right.description}}</p>
<hr />
</div>
</div>
</section>
<footer>
<!-- -->
<small>13Scoobie 2015</small>
</footer>
</div>
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/angular.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>