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
|
<?php /** * @package nasatheme */ get_header(); ?>
<div class="container-wrap"> <div class="row"> <div class="large-12 left columns"> <article id="post-0" class="post error404 not-found text-center"> <header class="entry-header"> <img src="<?php echo apply_filters('nasa_404_image_src', ELESSI_THEME_URI.'/assets/images/404.png'); ?>" alt="<?php esc_attr_e('404', 'elessi-theme');?>" /> <h1 class="entry-title"><?php esc_html_e('Oops! That page can’t be found.', 'elessi-theme'); ?></h1> </header><!-- .entry-header --> <div class="entry-content"> <p><?php esc_html_e('Sorry, but the page you are looking for is not found. Please, make sure you have typed the current URL.', 'elessi-theme'); ?></p> <?php get_search_form(); ?> <a class="button medium" href="<?php echo esc_url(home_url('/'));?>"> <?php esc_html_e('GO TO HOME', 'elessi-theme');?> </a> </div> </article> </div> </div> </div>
<?php get_footer();
|