-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy path404.php
49 lines (41 loc) · 1.72 KB
/
404.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include("includes/head.php");
$meta = new meta();
$meta->setTitle(
"Page not found - Melvin Jones Gallano Repol",
"I'm a Self-taught Freelance Software Engineer with experience in full-stack web development, seo, data analyics, embedded system design with arduino programming, hardware & software troubleshooting and PWA.",
"https://mrepol742.github.io/"
);
$meta->setImage("https://mrepol742.github.io/images/cover.jpg", "Cover Photo");
$meta->setKeywords("melvin jones, mrepol742, repol, mjrepol, melvin jones gallano repol, melvinjonesrepol");
?>
</head>
<body class="d-flex flex-column min-vh-100">
<?php
include('includes/nav.php');
include('includes/components/toast/privacypolicy.php');
?>
<main>
<div class="py-5">
<img src="https://i.gifer.com/WRNx.gif" class="rounded m-2">
<h1 class="mt-3">The page or file you are looking for was not here and I don't know why.</h1>
</div>
<br>
<div class="card mb-5">
<div class="card-body">
<h5 class="card-title">Found a problem with this page?</h5>
<ul class="card-text">
<li><a href="https://github.com/mrepol742/mrepol742.github.io/edit/master/search/index.php" target="_blank">Edit on Github</a></li>
<li><a href="https://github.com/mrepol742/mrepol742.github.io/blob/master/search/index.php?plain=1" target="_blank">Source on Github</a></li>
<li><a href="https://github.com/mrepol742/mrepol742.github.io/issues/new?">Report a problem with this
content on GitHub</a></li>
</ul>
</div>
</div>
</main>
<?php include('includes/footer.php') ?>
</body>
</html>