-
Notifications
You must be signed in to change notification settings - Fork 5
/
content-none.php
25 lines (25 loc) · 1.09 KB
/
content-none.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
<?php
/*
* The template part for displaying a message that posts cannot be found
*/
?>
<header class="jumbotron jumbotron-fluid bg-danger">
<div class="container">
<h1><?php _e('Dang Nabbit!', 'bootplate'); ?></h1>
<p><?php _e('We’re sorry, but that didn’t work. Details below.', 'bootplate'); ?></p>
<?php get_search_form(); ?>
</div>
</header>
<section class="no-results not-found">
<div class="container" style="min-height:500px;">
<?php bootplate_breadcrumbs(); ?>
<h2>Error Details</h2>
<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
<p><?php printf( 'Ready to publish your first post? <a href="%1$s">Let’s do this</a>!', esc_url( admin_url( 'post-new.php' ) ) ); ?></p>
<?php elseif ( is_search() ) : ?>
<p><?php _e('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'bootplate'); ?></p>
<?php else : ?>
<p><?php _e('It seems we can’t find what you’re looking for. Perhaps searching would help.', 'bootplate'); ?></p>
<?php endif; ?>
</div><!-- .container -->
</section><!-- .no-results -->