-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
executable file
·91 lines (75 loc) · 2.14 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
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
<?php
/**
* The template for displaying 404 pages (Not Found)
*
* Please see /external/starkers-utilities.php for info on get_template_parts()
*
* @package WordPress
* @subpackage Starkers
* @since Starkers 4.0
*/
?>
<?php get_template_parts( array( 'parts/shared/html-header', 'parts/shared/header' ) ); ?>
<style type="text/css">
.page-title-block .main-title {
color: #fff;
}
</style>
<?php
$whichPage = rand(0, 3);
switch ($whichPage) {
case 0: ?>
<section class="page-title-block photo foxy">
<div class="photo-overlay">
</div>
<div class="container">
<div class="error">
<h1>404</h1>
<p>A total clustercuss for everybody</p>
</div>
</div>
</section>
<?php
break;
case 1: ?>
<section class="page-title-block photo zissou">
<div class="photo-overlay">
</div>
<div class="container">
<div class="error">
<h1>404</h1>
<p>Son of a bitch, i'm sick of these dolphins</p>
</div>
</div>
</section>
<?php
break;
case 2: ?>
<section class="page-title-block photo royal">
<div class="photo-overlay">
</div>
<div class="container">
<div class="error">
<h1>404</h1>
<p>Hell of a damn grave. Wish it were mine.</p>
</div>
</div>
</section>
<?php
break;
case 3: ?>
<section class="page-title-block photo moonrise">
<div class="photo-overlay">
</div>
<div class="container">
<div class="error">
<h1>404</h1>
<p>Jiminy cricket, he flew the coop!</p>
</div>
</div>
</section>
<?php
break;
}
?>
<?php get_template_parts( array( 'parts/shared/footer','parts/shared/html-footer' ) ); ?>