-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
104 lines (103 loc) · 4.76 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Personal website of Prashant Bhat">
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico"/>
<link rel="stylesheet" type="text/css" href="/css/website.min.css">
<link rel="stylesheet" type="text/css" href="/css/custom.css">
<script src="/js/fontawesome.min.js"></script>
<script src="/js/website-icons.min.js"></script>
<script src="/js/bulma.js"></script>
<title>Prashant Bhat's Website</title>
</head>
<body class="has-navbar-fixed-top">
<nav class="navbar has-shadow is-fixed-top" role="navigation" aria-label="main navigation">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item" href="/">
<img src="/images/navbar-logo.png" width="28" height="28">
</a>
<a class="navbar-item is-paddingless" href="/">
<strong class="is-size-4">Prashant Bhat</strong>
</a>
<a role="button" class="navbar-burger burger" aria-label="menu" aria-expanded="false" data-target="navbarMenu">
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
<span aria-hidden="true"></span>
</a>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-start">
<div class="navbar-item is-hidden-touch"></div>
<div class="navbar-item has-dropdown is-hoverable">
<a class="navbar-link" href="/projects">Projects</a>
<div class="navbar-dropdown">
<a class="navbar-item" href="/projects/pustike-inject">Pustike Inject</a>
<a class="navbar-item" href="/projects/pustike-eventbus">Pustike EventBus</a>
<a class="navbar-item" href="/projects/pustike-persist">Pustike Persist</a>
<a class="navbar-item" href="/projects/pustike-json">Pustike JSON</a>
<a class="navbar-item" href="/projects/pustike-web">Pustike Web</a>
<hr class="navbar-divider">
<a class="navbar-item" href="/projects/pustike-maven-parent">Pustike Maven Parent</a>
<a class="navbar-item" href="/projects/website">Website using Hugo</a>
</div>
</div>
<a class="navbar-item" href="/blog">Blog</a>
<a class="navbar-item" href="/about">About</a>
</div>
<div class="navbar-end">
<div class="navbar-item has-dropdown is-hoverable is-hidden-touch">
<a class="navbar-link is-arrowless">
<span id="theme-icon" class="icon has-text-warning"><i></i></span>
</a>
<div class="navbar-dropdown is-boxed js-themes">
<a class="navbar-item" data-scheme="light">
<span class="icon has-text-warning"><i class="fas fa-sun"></i></span>Light
</a>
<a class="navbar-item" data-scheme="dark">
<span class="icon has-text-link"><i class="fas fa-moon"></i></span>Dark
</a>
<a class="navbar-item" data-scheme="system">
<span class="icon has-text-primary"><i class="fas fa-desktop"></i></span>System
</a>
</div>
</div>
</div>
</div>
</div>
</nav>
<div class="mx-2 my-2">
<div class="container">
<div class="columns is-mobile is-vcentered error-page">
<div class="column">
<p class="title has-text-danger has-text-centered">
The page you're looking for doesn't exist.
</p>
<br/>
<p class="subtitle has-text-centered">
Check for a typo in the URL or <a href="/">go the the home page</a>.
</p>
</div>
</div>
</div>
</div>
<footer class="footer is-paddingless">
<div>
<br/>
<p class="buttons is-centered">
<a class="button" href="https://github.com/prashantbhat/prashantbhat.github.io" target="_blank" title="Code repository">
<span class="icon is-small"><i class="fab fa-github"></i></span>
</a>
<a class="button" href="/blog/index.xml" target="_blank" title="Subscribe to RSS">
<span class="icon is-small has-text-danger"><i class="fas fa-rss"></i></span>
</a>
</p>
<p class="has-text-centered">Copyright 2021-2024 © Prashant Bhat.<br/>
The website content is licensed <a href="http://creativecommons.org/licenses/by-nc-sa/4.0/" target="_blank" >CC BY NC SA 4.0</a>.
</p>
<br/>
</div>
</footer>
</body>
</html>