-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path404.php
48 lines (28 loc) · 1.22 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
<?php
/*
Template Name: 404 page
*/
?>
<?php get_header(); ?>
<!-- MAIN CONTENT -->
<div class="container">
<div class="row">
<div class="span12 article-container-fix">
<div class="articles">
<article class="clearfix">
<header>
<h1><a href="<?php home_url(); ?>"> 404 </a></h1>
<br />
</header>
<h2> This is not the page You are looking for..</h2>
<figure class="article-preview-image">
<a href="<?php home_url(); ?>"><img src="http://a1.s6img.com/cdn/box_001/post_11/258030_3493776_i.jpg" alt="yoda" /></a>
</figure>
<hr class="image-replacement">
</article>
</div> <!-- end articles -->
</div> <!-- end span9 -->
</div> <!-- End of articles-nav -->
</div>
</div>
<?php get_footer(); ?>