forked from net-shaper/isucdc14-web
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·43 lines (41 loc) · 1.93 KB
/
Copy pathindex.html
File metadata and controls
executable file
·43 lines (41 loc) · 1.93 KB
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
<html ng-app="someLegalSite">
<head>
<title>Cache, Daemon, and Commit</title>
<link rel='stylesheet' type='text/css' href='css/primary.css'>
<link href='css/bootstrap.min.css' rel='stylesheet' type='text/css'>
<link href='css/bootstrap-responsive.min.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<header class="">
<h1 style='float:left'>Cache, Daemon, and Commit<small> Attourneys at Law</small></h1>
<img src='img/justice.png' style='width:100px;float:right;'/>
</header>
</div>
<div class="navbar">
<div class="navbar-inner">
<ul class="nav">
<li class='nav-button active'><a href="">Home</a></li>
<li class='nav-button'><a href="candc.html">Clients and Cases</a></li>
<li class='nav-button'><a href="casefiles/files.html">Casefiles</a></li>
</ul>
</div>
</div>
<div ng-app="" ng-controller="lawyerList">
<ul>
<div class="span6 offset3 well"ng-repeat="lawyer in lawyers">
<img src="img/{{lawyer.image}}.jpg" style="width:100px; float:right" />
<h2>{{lawyer.fname + ' ' + lawyer.lname}}</h2>
<p>{{lawyer.bio}}</p>
</div>
</ul>
</div>
</div>
<script src='http://ajax.googleapis.com/ajax/libs/angularjs/1.2.15/angular.min.js'></script>
<script src='js/jquery.min.js' type='text/javascript'></script>
<script src='js/bootstrap.min.js' type='text/javascript'></script>
<script src='js/lawyer.js' type='text/javascript'></script>
<script src='js/app.js'></script>
</body>
</html>