-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbibl_res.html
More file actions
67 lines (59 loc) · 2.38 KB
/
bibl_res.html
File metadata and controls
67 lines (59 loc) · 2.38 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>GBA Thesaurus | Bibliographic Resources</title>
<!--<link href="css/bootstrap.min.css" rel="stylesheet">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.bundle.min.js"></script>-->
<link rel="stylesheet" href="https://bootswatch.com/4/simplex/bootstrap.min.css">
<script src="js/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js"></script>
<script src="js/ws.js"></script>
<script src="js/lang.js"></script>
<script src="js/config.js"></script>
<script src="js/biblRes.js"></script>
<style type="text/css">
html {
height: 100%;
}
body {
height: 90%;
margin-top: 15px;
}
.list-group {
/* border: 1px solid #eeeeee;
-webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);*/
margin: 0px;
}
.list-group-item {
/*margin-bottom: 0px;*/
border: none !important;
}
</style>
<script>
$(document).ready(function () {
biblRes.init();
});
</script>
</head>
<body onload="biblRes.onResize();" onresize="biblRes.onResize();">
<div class="container-fluid" style="height:100%;">
<div class="row no-gutters" style="height:100%;">
<div id="one" class="card bg-secondary">
<!--<a href="https://www.geologie.ac.at"><img alt="GBA Thesaurus" id="IMG_GBALOGO" src="img/gbaLogo50.png" height="35"></a>-->
<div class="card-header">
<h3>Bibliographic references<button id="" title="GBA Thesaurus" type="button" class="close" style="float: right;" onclick="location.href = 'index.html';">close x</button></h3>
</div>
<div id="biblrefContainer" class="card-body">
<div id="biblrefToolbar" class="input-group "></div>
<div id="tabList" class="panel-group" role="tablist" style="overflow-y:auto">
<div class="" id="refList"> </div>
</div>
</div>
</div>
</div>
</div>
</body></html>