-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
56 lines (56 loc) · 3.31 KB
/
Copy path404.html
File metadata and controls
56 lines (56 loc) · 3.31 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Page not found — Indranil Mal</title>
<meta name="description" content="The page you requested could not be found. Browse the curated database of 847 computational materials science codes, or return to the homepage.">
<meta name="robots" content="noindex,follow">
<link rel="canonical" href="https://indranil2020.github.io/">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
* { box-sizing: border-box; }
body { margin: 0; font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif; color: #1a2238; background: #f7f9fc; min-height: 100vh; display: flex; flex-direction: column; }
.nav { background: #141c37; color: #fff; padding: 0.8rem 1.4rem; }
.nav a { color: #cbd5e1; text-decoration: none; margin-right: 1rem; font-size: 0.92rem; }
.nav a:hover { color: #fff; }
.nav .brand { color: #fff; font-weight: 700; }
.wrap { flex: 1; display: flex; align-items: center; justify-content: center; padding: 3rem 1.4rem; }
.card { background: #fff; border-radius: 14px; box-shadow: 0 8px 30px rgba(20,28,55,0.08); padding: 2.5rem 2.2rem; max-width: 640px; text-align: center; }
.code { font-size: 6rem; font-weight: 900; color: #2c4ed4; line-height: 1; margin: 0 0 0.6rem; letter-spacing: -2px; }
h1 { margin: 0 0 0.6rem; font-size: 1.55rem; }
p.lede { color: #5a6478; line-height: 1.6; margin: 0 0 1.6rem; }
.actions { display: flex; gap: 0.7rem; justify-content: center; flex-wrap: wrap; }
.btn { background: #2c4ed4; color: #fff; padding: 0.65rem 1.1rem; border-radius: 8px; text-decoration: none; font-size: 0.95rem; transition: background 0.15s; }
.btn:hover { background: #1d3aaa; }
.btn.secondary { background: #fff; color: #2c4ed4; border: 1px solid #d3dcec; }
.btn.secondary:hover { background: #eef2fb; }
footer { text-align: center; padding: 1.2rem; color: #5a6478; font-size: 0.85rem; }
</style>
</head>
<body>
<nav class="nav">
<a class="brand" href="/">Indranil Mal</a>
<a href="/"><i class="fas fa-home"></i> Home</a>
<a href="/publications.html"><i class="fas fa-file-alt"></i> Publications</a>
<a href="/scientific-tools.html"><i class="fas fa-project-diagram"></i> Interactive Tools</a>
<a href="/tools/"><i class="fas fa-list"></i> Tools Directory</a>
</nav>
<div class="wrap">
<div class="card">
<p class="code">404</p>
<h1>This page wandered off the lattice.</h1>
<p class="lede">The URL you followed doesn’t exist (anymore). It may have been renamed, or the link is mistyped. Try one of the destinations below — the curated 847-code database is probably what you’re looking for.</p>
<div class="actions">
<a class="btn" href="/"><i class="fas fa-home"></i> Homepage</a>
<a class="btn secondary" href="/tools/"><i class="fas fa-list"></i> Browse all 847 codes</a>
<a class="btn secondary" href="/scientific-tools.html"><i class="fas fa-project-diagram"></i> Interactive view</a>
<a class="btn secondary" href="/publications.html"><i class="fas fa-file-alt"></i> Publications</a>
</div>
</div>
</div>
<footer>
© Indranil Mal · <a href="https://github.com/Indranil2020/Indranil2020.github.io" style="color:#5a6478;">source</a>
</footer>
</body>
</html>