mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-21 10:33:44 +03:00
30 lines
770 B
PHP
30 lines
770 B
PHP
<section class="no-results not-found">
|
|
<header class="page-header">
|
|
<h1 class="page-title"><?php esc_html_e( 'Nothing Found', 'wporg-5ftf' ); ?></h1>
|
|
</header><!-- .page-header -->
|
|
|
|
<div class="page-content">
|
|
<?php if ( is_search() ) : ?>
|
|
|
|
<p>
|
|
<?php esc_html_e( 'Sorry, but nothing matched your search terms.', 'wporg-5ftf' ); ?>
|
|
</p>
|
|
|
|
<p>
|
|
<?php esc_html_e( 'Please try again with some different keywords.', 'wporg-5ftf' ); ?>
|
|
</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.', 'wporg-5ftf' ); ?>
|
|
</p>
|
|
|
|
<?php get_search_form(); ?>
|
|
|
|
<?php endif; ?>
|
|
</div><!-- .page-content -->
|
|
</section><!-- .no-results -->
|