-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (71 loc) · 2.82 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
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<title>Epistemics | Persons Intelligence for Legal Business</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- JQuery -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<!-- Bootstrap -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<link rel="stylesheet" href="style.css" type="text/css" />
<script type="text/javascript">
$(document).ready(function() {
$(".clickable-row").click(function() {
window.location = $(this).data("href");
});
});
</script>
</head>
<body>
<header class="container-fluid">
<h1>Epistemics Persons Intelligence</h1>
<ol class="breadcrumb">
<li class="breadcrumb-item active">Cases</li>
</ol>
</header>
<div class="container-fluid">
<div class="row content">
<div class="col-sm-8">
<h2>Deals</h2>
<table class='table table-striped table-hover'>
<caption>Choose one of the available deals.</caption>
<thead>
<tr>
<th>Deal</th>
<th>Client</th>
</tr>
</thead>
<tbody>
<tr class='clickable-row' data-href='case.html'>
<td> <span class="highlight">Eagle</span></td>
<td>Mantigma GmbH</td>
</tr>
<tr class='clickable-row' data-href='#'>
<td>EBRD Ukraine SME Support Fund 3B</td>
<td>InterCorp Bank B.V.</td>
</tr>
<tr class='clickable-row' data-href='#'>
<td>EBRD Ukraine SME Support Fund 3C</td>
<td>InterCorp Bank B.V.</td>
</tr>
</tbody>
</table>
</div>
<div class="col-sm-4 sidenav">
<h2>Welcome!</h2>
<p>Please choose a deal to work on from the list on the left.</p>
</div>
</div>
</div>
<footer class="container-fluid">
<p>Copyright 2017 Jakob Etzel</p>
</footer>
</body>
</html>