-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path404.php
More file actions
67 lines (37 loc) · 1.73 KB
/
404.php
File metadata and controls
67 lines (37 loc) · 1.73 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
<?php get_header(); ?>
<?php do_action('galopin_before_main'); ?>
<div class="wrapper">
<?php do_action('galopin_top_main'); ?>
<div class="main" role="main" itemprop="mainContentOfPage">
<ul class="posts">
<li>
<?php do_action('galopin_before_post'); ?>
<article <?php post_class('post'); ?> itemscope itemtype="http://schema.org/Article">
<?php do_action('galopin_top_post'); ?>
<header class="entry-header post-header">
<h1 class="entry-title post-header-title" itemprop="headline">
<?php _e('Oops, there is nothing here...', 'galopin'); ?>
</h1>
</header><!--END .entry-header-->
<?php do_action('galopin_before_content'); ?>
<div class="entry-content post-content" itemprop="articleBody">
<?php do_action('galopin_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 :", 'galopin'), home_url()); ?>
</p>
<ul class="galopin-archives">
<?php echo galopin_archives(); ?>
</ul>
<?php do_action('galopin_bottom_content'); ?>
</div><!--END .entry-content.post-content -->
<?php do_action('galopin_after_content'); ?>
<?php do_action('galopin_bottom_post'); ?>
</article><!--END .post-->
<?php do_action('galopin_after_post'); ?>
</li>
</ul><!--END .posts -->
</div><!--END .main -->
<?php do_action('galopin_bottom_main'); ?>
</div><!--END .wrapper -->
<?php do_action('galopin_after_main'); ?>
<?php get_footer(); ?>