-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpost.html
More file actions
46 lines (44 loc) · 1.6 KB
/
Copy pathpost.html
File metadata and controls
46 lines (44 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Post – Edgardo De Leon</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<h1>Edgardo De Leon</h1>
<p class="subtitle">PhD Student · Computational Chemistry</p>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="post.html" class="active">Post</a>
<a href="publications.html">Publications</a>
</nav>
</div>
</header>
<main class="container">
<h2>All Posts</h2>
<ul class="post-list">
<li>
<span class="post-date">June 15, 2026</span>
<a href="blog/nr.html">Running Simulations with AMBER</a>
<p class="post-excerpt">Small tutorial on how to use ambertools26, sander, and pmemd...</p>
</li>
<!-- Add new posts here -->
</ul>
</main>
<footer>
<div class="container">
<p>© 2026 Edgardo De Leon ·
<a href="https://www.linkedin.com/in/edgardo-de-leon-06b627327/">LinkedIn</a> ·
<a href="https://github.com/edleon123">GitHub</a> ·
<a href="https://bsky.app/profile/edlalio.bsky.social">Bluesky</a> ·
<a href="https://scholar.google.com/citations?user=a40YVzQAAAAJ&hl=en">Google Scholar</a>
</p>
</div>
</footer>
</body>
</html>