2014-12-10 11:36:38 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* The template part for displaying a message that posts cannot be found.
|
|
|
|
*
|
|
|
|
* Learn more: http://codex.wordpress.org/Template_Hierarchy
|
|
|
|
*
|
|
|
|
* @package understrap
|
|
|
|
*/
|
2016-03-02 22:50:57 +00:00
|
|
|
|
2018-09-10 21:59:04 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly.
|
|
|
|
}
|
2014-12-10 11:36:38 +00:00
|
|
|
?>
|
2017-02-02 08:17:24 +00:00
|
|
|
|
|
|
|
<section class="no-results not-found">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<header class="page-header">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2017-02-09 14:55:27 +00:00
|
|
|
<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'understrap' ); ?></h1>
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
</header><!-- .page-header -->
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<div class="page-content">
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2017-02-02 08:17:24 +00:00
|
|
|
<?php
|
|
|
|
if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2017-04-15 12:14:32 +00:00
|
|
|
<p><?php printf( wp_kses( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'understrap' ), array(
|
|
|
|
'a' => array(
|
|
|
|
'href' => array(),
|
|
|
|
),
|
|
|
|
) ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php elseif ( is_search() ) : ?>
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2017-02-09 14:55:27 +00:00
|
|
|
<p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'understrap' ); ?></p>
|
2017-02-02 08:17:24 +00:00
|
|
|
<?php
|
|
|
|
get_search_form();
|
|
|
|
else : ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2017-02-09 14:55:27 +00:00
|
|
|
<p><?php esc_html_e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'understrap' ); ?></p>
|
2017-02-02 08:17:24 +00:00
|
|
|
<?php
|
|
|
|
get_search_form();
|
|
|
|
endif; ?>
|
2016-11-21 18:12:07 +00:00
|
|
|
</div><!-- .page-content -->
|
2017-02-02 08:17:24 +00:00
|
|
|
|
|
|
|
</section><!-- .no-results -->
|