-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
35 lines (30 loc) · 876 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
28
29
30
31
32
33
34
35
<?php
/**
*
* Silverclean WordPress Theme by Iceable Themes | https://www.iceablethemes.com
*
* Copyright 2013-2020 Iceable Themes - https://www.iceablethemes.com
*
* 404 Page Template
*
*/
get_header();
?>
<div class="container" id="main-content">
<div id="page-container" class="left with-sidebar">
<div <?php post_class(); ?>>
<h1 class="page-title"><?php esc_html_e( '404', 'silverclean-lite' ); ?></h1>
<h2><?php esc_html_e( 'Page Not Found', 'silverclean-lite' ); ?></h2>
<p><?php esc_html_e( 'What you are looking for isn\'t here...', 'silverclean-lite' ); ?></p>
<p><?php esc_html_e( 'Maybe a search will help ?', 'silverclean-lite' ); ?></p>
<?php get_search_form(); ?>
</div>
</div>
<div id="sidebar-container" class="right">
<ul id="sidebar">
<?php dynamic_sidebar( 'sidebar' ); ?>
</ul>
</div>
</div>
<?php
get_footer();