-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
27 lines (25 loc) · 915 Bytes
/
Copy path404.html
File metadata and controls
27 lines (25 loc) · 915 Bytes
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
---
layout: default
title: Page Not Found
permalink: /404.html
sitemap: false
robots: noindex, follow
---
<h1>Page Not Found</h1>
<div class="card bg-primary shadow-soft border-light mb-4">
<div class="card-body">
<p class="card-text">
Sorry, the page you were looking for doesn't exist or may have been moved.
</p>
<p class="card-text">
Try one of these instead:
</p>
<ul class="card-text mb-0">
<li><a class="text-secondary" href="{{ '/' | relative_url }}">Home</a></li>
<li><a class="text-secondary" href="{{ '/projects/' | relative_url }}">Projects</a></li>
<li><a class="text-secondary" href="{{ '/blog/' | relative_url }}">Blog</a></li>
<li><a class="text-secondary" href="{{ '/experience/' | relative_url }}">Experience</a></li>
<li><a class="text-secondary" href="{{ '/contact/' | relative_url }}">Contact</a></li>
</ul>
</div>
</div>