-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
110 lines (72 loc) · 3.12 KB
/
404.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta name="google-site-verification" content="rvGpV1PxTT2B9Z4PWvbaEJ31U2ZuQ5K_WyXFdZDhMUc" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>404 Page not found | Pankaj K Mishra</title>
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/fonts.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<nav class="nav-container">
<button class="hamburger" aria-label="Toggle menu">☰</button>
<h1 class="site-title">Pankaj K Mishra</h1>
</nav>
<nav class="menu-wrapper">
<ul class="menu">
<li><a href="/">🏚️ Home</a></li>
<li><a href="/research/">🌍 Research</a></li>
<li><a href="/publications/">📚 Publications</a></li>
<li><a href="/teaching/">🎓 Teaching</a></li>
<li><a href="/post/">🗯️ Blog</a></li>
</ul>
</nav>
<hr>
<main>
</main>
<footer>
</footer>
<script>
document.addEventListener('DOMContentLoaded', function() {
const hamburger = document.querySelector('.hamburger');
const menuWrapper = document.querySelector('.menu-wrapper');
hamburger.addEventListener('click', function(event) {
event.stopPropagation();
menuWrapper.classList.toggle('active');
});
document.addEventListener('click', function(event) {
if (!menuWrapper.contains(event.target) && !hamburger.contains(event.target)) {
menuWrapper.classList.remove('active');
}
});
});
</script>
</body>
</html>
404 NOT FOUND
<footer>
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/katex/dist/katex.min.css">
<script src="//cdn.jsdelivr.net/combine/npm/katex/dist/katex.min.js,npm/katex/dist/contrib/auto-render.min.js,npm/@xiee/utils/js/render-katex.js" defer></script>
<script src="//cdn.jsdelivr.net/npm/@xiee/utils/js/center-img.min.js" defer></script>
<script>
document.addEventListener("DOMContentLoaded", function() {
renderMathInElement(document.body, {
delimiters: [
{left: "$$", right: "$$", display: true},
{left: "$", right: "$", display: false}
]
});
});
</script>
<hr/>
<a href="https://github.com/pankajkmishra" target="_blank"><i class="fab fa-github"></i></a> |
<a href="https://twitter.com/pankajkmishra_" target="_blank"><i class="fab fa-twitter"></i></a> |
<a href="https://www.linkedin.com/in/pankajkmishra01/" target="_blank"><i class="fab fa-linkedin"></i></a> |
<a href="mailto:[email protected]" target="_blank"><i class="fas fa-envelope"></i></a> |
<a href="https://orcid.org/0000-0003-4907-4724" target="_blank"><i class="fab fa-orcid"></i></a> |
Geophysical Solutions, <a href="https://www.gtk.fi/" target="_blank">Geological Survey of Finland (GTK)</a>
</footer>
</body>
</html>