-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
46 lines (46 loc) · 1.65 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
<?php
/**
* Template Name: Error 404
*/
?>
<!doctype html>
<html lang="en">
<head>
<?php require_once(get_template_directory() . '/includes/meta.php'); ?>
<title>404 - Not Found</title>
<link rel="stylesheet" href="<?php echo get_stylesheet_directory_uri(); ?>/assets/css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Chewy&display=swap" rel="stylesheet">
<style>
.lead-404 { font-family: 'Chewy', cursive; font-size: 2em; margin-bottom: 2em; margin-top: 2em; }
<?php wp_head(); ?>
</head>
<body>
<?php get_header(); ?>
<div class="container">
<div class="row">
<div class="col-md-8">
<div class="card">
<div class="img-top text-center">
<img src="<?php echo get_stylesheet_directory_uri(); ?>/assets/images/balanced-man-cat-in-the-hat.png" class="w-50 m-4 img-fluid" alt="Cat in the Hat Balanced Man" />
</div>
<div class="card-body text-center">
<h2 class="card-title">Error 404</h2>
<hr />
<p class="card-text lead-404 text-left">We looked over here!</p>
<p class="card-text lead-404 text-right">We looked over there!</p>
<p class="card-text lead-404">But we couldn't find your content anywhere!</p>
<hr />
<p class="card-text lead">Use the search form below to keep looking.</p>
<?php get_search_form(); ?>
</div>
</div>
</div>
<div class="col-md-4">
<?php get_sidebar(); ?>
</div>
</div>
</div>
<?php get_footer(); ?>
<?php wp_footer(); ?>
</body>
</html>