-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
92 lines (78 loc) · 3.03 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Lumol molecular simulation engine</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width">
<link rel="canonical" href="" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/manifest.json">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="/static/css/bootstrap.min.css">
<link rel="stylesheet" href="/static/css/main.css">
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">
<img src="/static/images/lumol.png" alt="Logo" class="logo">
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class=""><a href="/">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Documentation <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="http://lumol-org.github.io/lumol/latest/book/">User manual</a></li>
<li><a href="http://lumol-org.github.io/lumol/latest/lumol/">Developer reference</a></li>
</ul>
<li><a href="https://github.com/lumol-org/lumol">Github</a></li>
</li>
<li class=""><a href="/contact/">Contact</a></li>
</ul>
</div><!--/.navbar-collapse -->
</div>
</div>
<div id="wrap">
<div id="main">
<div class="jumbotron">
<div class="container">
<h1>We're sorry!</h1>
<p>The page <b id="url"></b> could not be found on this server.</p>
</div>
</div>
</div>
</div>
<footer class="footer">
<p>
— Lumol — An open source molecular simulation engine —
<a href="/contact/">Contact us</a> —
</p>
</div>
<script src="/static/js/vendor/jquery-1.10.1.js"></script>
<script src="/static/js/vendor/bootstrap.js"></script>
<script src="/static/js/main.js"></script>
</body>
<script type="text/javascript" charset="utf-8">
$(document).ready(function () {
// Add the missing url to the text
$("#url").text(window.location.pathname);
// Fix the css locations dynamically
$("head link").each(function () {
for (var i = 0; i < window.location.pathname.split(/\//g).length - 2; i++)
$(this).attr("href", "../" + $(this).attr("href"));
});
});
</script>
</html>