-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
executable file
·49 lines (32 loc) · 1.17 KB
/
404.php
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
<?php
/**
* The template for displaying 404 pages (not found)
*
* @package Semantique
* @since Semantique 1.0.0
*/
get_header(); ?>
<!-- nominal classname follows -->
<div class="full-width" role="main">
<div class="container">
<h1 class="tpl-name">404 <?php c2c_reveal_template(); ?></h1>
<h1 class="tpl-name">404</h1>
<article <?php post_class() ?> id="post-<?php the_ID(); ?>">
<header>
<h1 class="entry-title"><?php _e( 'File Not Found', 'semantique' ); ?></h1>
</header>
<div class="entry-content">
<div class="error">
<p class="bottom"><?php _e( 'The page you are looking for might have been removed, had its name changed, or is temporarily unavailable.', 'semantique' ); ?></p>
</div>
<p><?php _e( 'Please try the following:', 'semantique' ); ?></p>
<ul>
<li><?php _e( 'Check your spelling', 'semantique' ); ?></li>
<li><?php printf( __( 'Return to the <a href="%s">home page</a>', 'semantique' ), home_url() ); ?></li>
<li><?php _e( 'Click the <a href="javascript:history.back()">Back</a> button', 'semantique' ); ?></li>
</ul>
</div><!-- /entry-content -->
</article>
<?php get_sidebar(); ?>
</div><!-- /container -->
<?php get_footer();