-
Notifications
You must be signed in to change notification settings - Fork 0
/
entries.html
104 lines (97 loc) · 3.93 KB
/
entries.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="keywords" content="key, words">
<meta name="description" content="description">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1">
<title>Human Impacts</title>
<!--<link href="css/style.css" rel="stylesheet" type="text/css">
<link href="css/style2.css" rel="stylesheet" type="text/css">
<link href="css/style_dev.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" media="all" type="text/css" href="css/skeleton.css">
<link rel="stylesheet" media="all" type="text/css" href="css/nzs-frame-media.css">-->
<link rel="stylesheet" media="all" type="text/css" href="font-awesome-4.3.0/css/font-awesome.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/core-js/3.22.2/minified.min.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.css" rel="stylesheet" type="text/css">
<link href="https://cdn.datatables.net/1.10.16/css/jquery.dataTables.min.css" rel="stylesheet" type="text/css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
<script src="https://cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script>
<style>
.container {
position: relative;
width: 1170px;
margin: 0 auto;
padding: 0;
display: table;
top: 20px;
}
.clearfix {
zoom: 1;
/**border: 1px solid #b2b2b2;
padding: 3%;*/
}
.header {display: flex;justify-content:space-between;align-items:center;width:100%;}
.logo {text-decoration: none;}
.logo img {width: 200px;}
.header h1 {width: calc(100% - 220px);margin:0;padding:0;}
</style>
</head>
<body>
<div>
<div class="container clearfix">
<div class="header">
<a class="logo" href="https://camilo-mora.github.io/GEO309/" target="_blank">
<img src="https://camilo-mora.github.io/GEO309/images/MoraLab.png" />
</a>
<h1 style="text-align: center;" class="impact-title"> Traceable evidence of the impacts of climate change on humanity </h1>
</div>
<h3 style="text-align: center;"><u> Entries </u></h3>
<p style="text-align: right;"><strong><a href="index.html">back</a></strong></p>
<table class="table table-bordered ind_entry">
<thead>
<tr style="background: #c1d1f4;">
<th>Reference ID</th>
<th>Authors </th>
<th>Year</th>
<th>Title</th>
<th>PDF</th>
<th>Entry Id</th>
<th>Climatic Change</th>
<th>Primary Impact</th>
<th>Secondary Impact</th>
<th>Effect</th>
<th>Finding/Comment</th>
<th>Entered by</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<link href="css/toastr.min.css" rel="stylesheet" type="text/css">
<script src="js/toastr.min.js"></script>
<script>
$(document).ready(function () {
$('.ind_entry').DataTable({
"processing": true,
"searching": true,
columnDefs: [
{
"targets": 4,
"data" : 4,
"render": function ( data, type, row, meta ) {
return '<a href="PDFs/' + data + '" target="_blank">PDF</a>';
}
}
],
"ajax": "json/entries.json"
});
});
</script>
</div>
</body>
</html>