-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
executable file
·59 lines (41 loc) · 1.07 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
<?php
/**
* The 404 page template.
*
* Used when a default template individual page is queried.
*/
get_header();
?>
<?php
//============ ** ============ //
// Page HERO
//============ ** ============ //?>
<section class="hero mmconf_hero container">
<div class="row hero-content">
<div class="col-10 col-centered text-center">
<h1>Whoops</h1>
</div>
</div>
</section>
<?php
//============ ** ============ //
// Second Row, info block
//============ ** ============ //
?>
<section class="container conf-content">
<div class="row">
<article class="col-11 col-centered">
<p class="text-center">Looks like you found a missing page. While we print some rad lost and found posters you can use the top nav to check around yourself. </p>
</article>
</div>
</section>
<?php
//============ ** ============ //
// Sign up for email
//============ ** ============ //
get_template_part('parts/newsletter');
//============ ** ============ //
// Include Sponsors
//============ ** ============ //
get_template_part('parts/sponsors');
get_footer();