-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (56 loc) · 2.16 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<title>Immigration Legal Assistance</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css"> -->
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
<!-- RL CSS -->
<link rel="stylesheet" href="css/main.css" type="text/css">
</head>
<body>
<nav class="navbar navbar-default navbar-rl">
<div class="container">
<div class="navbar-header">
<a class="navbar-brand" href="/refugee-lawyers">
<img alt="CodeDoesGood © 2017" class="img-thumbnail" src="img/logoCandidate1.png">
</a>
</div>
</div>
</nav>
<div class="container content">
<h3>List of Immigration Lawyers in the US</h3>
<table id="lawyers-list" class="table table-striped">
<thead>
<tr>
<td>City</td>
<td>Airport</td>
<td>Name</td>
<td>Phone Number</td>
</tr>
</thead>
<tbody>
<tr class="lawyer" v-for="lawyer in sortedByCity(lawyers)">
<td class="city">{{ lawyer.city }}</td>
<td class="airport">{{ lawyer.airport }}</td>
<td class="name"><strong>{{ lawyer | nameOrOrganization }}</strong></td>
<td class="phone">{{ lawyer.phone1 }}</td>
</tr>
</tbody>
</table>
</div>
<nav class="navbar navbar-default footer-rl">
<div class="container">
<p class="navbar-text text-center">CodeDoesGood © 2017</p>
</div>
</nav>
<!-- libs -->
<script src="js/jquery-3.1.1.min.js" charset="utf-8"></script>
<script src="js/lodash.min.js" charset="utf-8"></script>
<!-- <script src="js/bootstrap.min.js"></script> -->
<script src="js/vue.min.js"></script>
<!-- core scripts -->
<script src="js/main.js" charset="utf-8"></script>
</body>
</html>