-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·73 lines (59 loc) · 2.65 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
<!DOCTYPE HTML>
<html>
<head>
<title>Quantum Dynamics Hub</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-117524895-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-117524895-1');
</script>
</head>
<body>
<!-- Title -->
<div class="row">
<div class="col-12"><h1>Quantum Dynamics Hub </h1></div>
</div>
<!-- Navigation bar" -->
<nav class="navbar navbar-expand-sm bg-dark navbar-dark">
<ul class="navbar-nav">
<li class="nav-item active"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbardrop" data-toggle="dropdown">
Software
</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="libra/index.html">Libra</a>
<a class="dropdown-item" href="#">Libra-X</a>
<a class="dropdown-item" href="pyxaid/index.html">Pyxaid</a>
<a class="dropdown-item" href="#">Pyxaid2</a>
</div>
</li>
<li class="nav-item"><a class="nav-link" href="workshop_2018.html">MolSSI workshop, 2018</a></li>
<li class="nav-item"><a class="nav-link" href="naqd_software_list.html">NA/QD Software List</a></li>
</ul>
</nav>
<!-- Content -->
<div class="container-fluid margin-left">
<br><br>
<p>
Welcome the the Quantum Dynamics Hub!
This portal hosts a number of software for quantum dynamics simulaitons, including
nonadiabatic molecular dynamics, exact wavepacket propagation, semi-classical methods for
quantum nuclear dynamics, and so on.
</p>
<p>
This portal is relatively new, and therefore is under construction. So for, you should be
able to navigate to the websites of some specialized programs (see the navigation bar menu).
</p>
</div>
</body>
</html>