mirror of
https://github.com/lubuntu-team/lubuntu.me.git
synced 2025-02-22 07:51:06 +00:00
21 lines
666 B
PHP
21 lines
666 B
PHP
<?php
|
|
/**
|
|
* The template for displaying 404 single pages (Not Found).
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Fruitful theme
|
|
* @since Fruitful theme 1.0
|
|
*/
|
|
?>
|
|
|
|
<article id="post-0" <?php post_class('post error404 not-found'); ?>>
|
|
<header class="entry-header">
|
|
<h1 class="entry-title"><?php _e( 'Oops! That page can’t be found.', 'fruitful' ); ?></h1>
|
|
</header><!-- .entry-header -->
|
|
|
|
<div class="entry-content 404-content">
|
|
<p><?php _e( 'It looks like nothing was found at this location. Maybe try one of the links below or a search?', 'fruitful' ); ?></p>
|
|
<?php get_search_form(); ?>
|
|
</div><!-- .entry-content -->
|
|
</article><!-- #post -->
|