15 lines
601 B
PHP
15 lines
601 B
PHP
<?php get_header(); ?>
|
|
<?php include(get_template_directory() . '/layout-head.php'); ?>
|
|
|
|
<div class="post page post-404">
|
|
<div class="post-head"></div>
|
|
<div class="post-content">
|
|
<h2 class="pagetitle"><?php _e('Page Not Found','comicpress'); ?></h2>
|
|
<p><a href="<?php bloginfo('wpurl') ?>"><?php _e('Click here to return to the home page','comicpress'); ?></a> <?php _e('or try a search:','comicpress'); ?></p>
|
|
<p><?php the_widget('WP_Widget_Search'); ?></p>
|
|
</div>
|
|
<div class="post-foot"></div>
|
|
</div>
|
|
|
|
<?php include(get_template_directory() . '/layout-foot.php'); ?>
|
|
<?php get_footer() ?>
|