blob: baa97f98b57d60888878d659316e61d6098e4384 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Welcome to the home of That Computer Scientist. I am Kumar Priyansh. This is my personal website where I share all of my thoughts, ideas, and experiences."
/>
<title>That Computer Scientist - <%= title %></title>
<!-- <link rel="stylesheet" href="css/fonts.css"> -->
<link preload rel="stylesheet" href="../css/main.css" />
</head>
<body>
<div class="main">
<div class="errorbox">
<h1 class="error">Whoops! Encountered an error!</h1>
<p><%= error %></p>
<p>Please click <a href="/">here</a> to go back to the home page.</p>
</div>
</div>
<%- include('../partials/footer.ejs') %>
</body>
</html>
|