Make WordPress Themes

source: multisport/1.0.2/404.php

Last change on this file was 72862, checked in by themedropbox, 9 years ago

New version of MultiSport - 1.0.2

File size: 718 bytes
Line 
1<?php
2/**
3 * The template for displaying 404 pages (not found)
4 *
5 * @subpackage multisport
6 * @author customizablethemes
7 * @since MultiSport 1.0.0
8 *
9 */
10
11 get_header(); ?>
12
13<div class="clear">
14</div><!-- .clear -->
15
16<div id="main-content-wrapper">
17
18        <div id="main-content">
19
20                <h1><?php _e( 'Oops! That page can&rsquo;t be found.', 'multisport' ); ?></h1>
21
22                <div class="content">
23                        <p>
24                                <?php _e( 'It looks like nothing was found at this location. Maybe try a search?', 'multisport' ); ?>
25                        </p>
26
27                        <?php get_search_form(); ?>
28                </div><!-- .content -->
29
30        </div><!-- #main-content -->
31
32        <?php get_sidebar(); ?>
33
34</div><!-- #main-content-wrapper -->
35
36<?php get_footer(); ?>
Note: See TracBrowser for help on using the repository browser.