-
Notifications
You must be signed in to change notification settings - Fork 0
/
database.html
60 lines (51 loc) · 1.75 KB
/
database.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<link rel="shortcut icon" href="css/propairs_logo_fav.ico">
<link rel="stylesheet" href="css/db.css" type="text/css"/>
<link rel="stylesheet" href="css/propairs.css" type="text/css"/>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/headerscroll.js"></script>
<title>ProPairs</title>
</head>
<body>
<header>
<a href="https://github.com/propairs/propairs"><img style="position: absolute; top: 0; right: 0; border: 0;"
src="https://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" /></a>
<div class="banner">
<a href="index.html"></a>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><span>Database</span></li>
<li><a href="rawdata.html">Raw data</a></li>
<li><a href="sourcecode.html">Source code</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<div id="dbDetail">
<div id="dbDetailNav">
<button title="close detail view" id="close">Close</button>
<button title="show previous complex of current set" id="prev" title="previous">Prev</button>
<input title="mark for download" type="checkbox" value="yes"></input>
<button title="show next complex of current set" id="next">Next</button>
</div>
<section>
<div id="dbDetailView">
</div>
<div id="dbDetailData">
</div>
</section>
<div class="footer"></div>
</div>
</header>
<div id="body">
</div>
<script>$("#body").load("db.html");</script>
<footer>
<p>© 2018 by F. Krull, Freie Universität Berlin, Macromolecular Modelling Group, Prof. E. W. Knapp</p>
</footer>
</body>
</html>