-
Notifications
You must be signed in to change notification settings - Fork 89
/
404.php
39 lines (36 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>">
<title>Page Not Found</title>
<link rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>" />
</head>
<body>
<div id="wrapper">
<div class="global-nav-bg">
<div class="global-nav">
</div><!-- /.global-nav -->
</div> <!-- /.global-nav-bg -->
<div id="header">
<div class="container_12 clearfix">
<div class="grid_6 branding">
<h2 id="site-title">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home" class="unitPng">
<?php bloginfo('name'); ?>
</a>
</h2>
<h2><?php bloginfo('description'); ?></h2>
</div>
<!-- end .grid_6 -->
</div> <!--/ .container_12 -->
</div> <!-- /header -->
<div id="main" class="container_12 clearfix">
<div id="content" class="grid_12 search-404">
<h1 class="entry-title">Not Found</h1>
<p>Sorry. We can't find the page you were looking for. Please try searching for related posts:</p>
<?php get_search_form(); ?>
</div><!-- /content -->
</div><!-- /main -->
</div><!-- /wrapper -->
</body>
</html>