-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
27 lines (21 loc) · 769 Bytes
/
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
<?php
/**
* The template for displaying 404 pages (Not Found)
*
* @package WordPress
* @subpackage Twenty_Thirteen
* @since Twenty Thirteen 1.0
*/
get_header(); ?>
<div id="primary" class="content-area">
<div id="content" class="site-content" role="main">
<header class="entry-header">
<h1 class="entry-title"><?php _e( "— four-O-four — not found — 404", 'punktoinfo' ); ?></h1>
</header>
<div class="entry-content">
<h2><?php _e( 'We don’t know who has taken you here.', 'punktoinfo' ); ?></h2>
<p><?php _e( 'Maybe you clicked on a wrong or obsolete link?<br>Or typed in a wrong address?', 'punktoinfo' ); ?></p>
</div><!-- .entry-content -->
</div><!-- #content -->
</div><!-- #primary -->
<?php get_footer(); ?>