-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.php
More file actions
83 lines (47 loc) · 1.94 KB
/
404.php
File metadata and controls
83 lines (47 loc) · 1.94 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/**
* The template for displaying 404 pages (not found)
*
* @package Intro
* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License
* @since 1.0
*/
?>
<?php if ( ! defined( 'ABSPATH' ) ) exit; ?>
<?php get_template_part('header', 'bar'); ?>
<?php get_header(); ?>
<?php do_action('intro_before_main'); ?>
<section class="content">
<div class="wrapper">
<?php do_action('intro_top_main'); ?>
<main class="main-content col-1-1" role="main" itemprop="mainContentOfPage">
<?php do_action('intro_before_post'); ?>
<article <?php post_class('post'); ?> itemscope itemtype="http://schema.org/Article">
<?php do_action('intro_top_post'); ?>
<header class="entry-header">
<?php do_action('intro_top_header_post'); ?>
<h1 class="entry-title" itemprop="headline">
<?php _e('Oops, there is nothing here...', 'intro'); ?>
</h1><!--END .entry-title-->
<?php do_action('intro_bottom_header_post'); ?>
</header><!--END .entry-header-->
<?php do_action('intro_before_content'); ?>
<div class="entry-content" itemprop="articleBody">
<?php do_action('intro_top_content'); ?>
<p>
<?php printf(__("The page you requested does not seem to exist. You can go back to <a href=\"%s\">the home page</a> or browse the archives :", 'intro'), home_url()); ?>
</p>
<ul class="intro-archives">
<?php echo intro_archives(); ?>
</ul>
<?php do_action('intro_bottom_content'); ?>
</div><!--END .entry-content-->
<?php do_action('intro_after_content'); ?>
<?php do_action('intro_bottom_post'); ?>
</article><!-- END .post -->
</main><!-- END .main-content -->
<?php do_action('intro_bottom_main'); ?>
</div><!-- END .wrapper -->
</section><!-- END .content -->
<?php do_action('intro_after_main'); ?>
<?php get_footer(); ?>