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
|
|
|
|
2014-12-10 11:36:38 +00:00
|
|
|
?>
|
2016-11-01 16:13:23 +00:00
|
|
|
<article class="post no-results not-found" id="post-0">
|
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
|
|
|
|
2016-12-10 09:07:59 +00:00
|
|
|
<h1 class="page-title"><?php _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
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.',
|
|
|
|
'understrap' ), 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
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<p><?php _e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.',
|
|
|
|
'understrap' ); ?></p>
|
|
|
|
<?php get_search_form(); ?>
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php else : ?>
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<p><?php _e( 'It seems we can’t find what you’re looking for. Perhaps searching can help.',
|
|
|
|
'understrap' ); ?></p>
|
2016-01-04 13:18:35 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php get_search_form(); ?>
|
2014-12-10 11:36:38 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
<?php endif; ?>
|
2016-11-01 15:25:21 +00:00
|
|
|
|
2016-11-21 18:12:07 +00:00
|
|
|
</div><!-- .page-content -->
|
2016-01-04 13:18:35 +00:00
|
|
|
|
|
|
|
</article><!-- .no-results -->
|