-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
56 lines (42 loc) · 1.04 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
50
51
52
53
54
55
56
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package WordPress
* @subpackage Twenty_Seventeen
* @since 1.0
* @version 1.0
*/
get_header(); ?>
<?php
/**
* The template for displaying all pages
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site may use a
* different template.
*
* @link https://codex.wordpress.org/Template_Hierarchy
*
* @package WordPress
* @subpackage Twenty_Seventeen
* @since 1.0
* @version 1.0
*/
get_header();
?>
<section id="maincontent" class="one-column-section">
<div class="container-fluid section-wrap section-padding bg-lightgrey">
<div class="col-xs-12 col-sm-offset-1 col-sm-2">
<h2>Ooops!</h2>
</div>
<div class="col-xs-12 col-sm-7">
<h3>THAT PAGE CAN’T BE FOUND.</h3>
It looks like nothing was found at this location.
</div>
</div>
</section>
<?php get_footer();