-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
61 lines (56 loc) · 2.33 KB
/
about.html
File metadata and controls
61 lines (56 loc) · 2.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About MAPLE</title>
<link rel="stylesheet" href="assets/css/styles.css">
</head>
<body>
<header class="top-nav">
<div class="container">
<div class="brand">
<a href="index.html"><img src="assets/images/logo.jpg" alt="MAPLE Logo"></a>
<a href="index.html">MAPLE</a>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="general.html">About MAPLE</a></li>
<li><a href="documentation.html">User Guide</a></li>
<li><a href="articles.html">Articles</a></li>
<li><a href="downloads.html">Downloads</a></li>
<li><a href="issues.html">Report an issue</a></li>
<li><a href="development.html">Development</a></li>
</ul>
</nav>
</div>
</header>
<main>
<div class="content-wrapper">
<div class="main-content">
<section class="welcome-section">
<h1>About MAPLE</h1>
<p class="tagline">Learn about MAPLE and its capabilities in molecular dynamics simulations.</p>
</section>
<section class="new-section">
<h2>Overview</h2>
<p>MAPLE is a free and open-source software suite designed for high-performance molecular dynamics simulations and comprehensive output analysis. It provides researchers and scientists with powerful tools to study molecular systems at the atomic level.</p>
</section>
<section class="new-section">
<h2>Features</h2>
<ul>
<li>High-performance molecular dynamics simulations</li>
<li>Comprehensive analysis tools</li>
<li>Open-source and freely available</li>
<li>Extensive documentation and community support</li>
</ul>
</section>
</div>
</div>
</main>
<footer>
<p>© 2025, MAPLE development team.</p>
</footer>
</body>
</html>