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
|
<?php /** * * Learn more: http://codex.wordpress.org/Template_Hierarchy * * @package nasatheme */ ?>
<article id="post-0" class="post no-results not-found nasa-search-post-no-result"> <header class="entry-header"> <h1 class="entry-title"><?php esc_html_e('Nothing Found', 'elessi-theme'); ?></h1> </header>
<div class="entry-content"> <?php if (is_home() && current_user_can('publish_posts')) : ?> <p> <?php printf(wp_kses(__('Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'elessi-theme'), array('a' => array('href' => array()))), esc_url(admin_url('post-new.php'))); ?> </p> <?php elseif (is_search()) : ?> <p><?php esc_html_e('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'elessi-theme'); ?></p> <?php get_search_form(); ?> <?php else : ?> <p><?php esc_html_e('It seems we can’t find what you’re looking for. Perhaps searching can help.', 'elessi-theme'); ?></p> <?php get_search_form(); ?> <?php endif; ?> </div> </article>
|