-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
37 lines (27 loc) · 849 Bytes
/
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
<?php
/**
* This is 404 page for mendocinotransit.org
*
* 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 will use a
* different template.
*
* @package WordPress
* @subpackage Twenty_Ten
* @since Twenty Ten 1.0
*/
get_header(); ?>
<div id="page-overlay">
<?php the_post(); ?>
<h1 class="entry-title main"><?php the_title(); ?></h1>
<?php //if(function_exists(simple_breadcrumb)) {simple_breadcrumb();} ?>
<br/>
<hr />
<br/>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php the_content(); ?>
Sorry the page you requested cannot be found.
</div>
</div> <!-- page-overlay -->
<?php get_footer(); ?>