comicpress-core/404.php

22 lines
571 B
PHP
Raw Normal View History

<?php
global $comicpress;
2009-06-13 11:58:02 +00:00
comicpress_init();
ob_start();
?>
2009-06-13 11:58:02 +00:00
<div class="post-page-head"></div>
<div class="post-page">
<h2 class="pagetitle">Page Not Found</h2>
<p><a href="<?php bloginfo('url') ?>">Click here to return to the home page</a> or try a search:</p>
<p><?php include (get_template_directory() . '/searchform.php') ?></p>
2009-06-13 11:58:02 +00:00
<br class="clear-margins" />
</div>
<div class="post-page-foot"></div>
<?php
$content = ob_get_clean();
include(get_template_directory() . '/layouts/' . $comicpress->comicpress_options['layout']);
?>