Your IP : 216.73.216.95


Current Path : /var/test/www/html/37thanniversary/wp-content/themes/rubrash/template-parts/
Upload File :
Current File : /var/test/www/html/37thanniversary/wp-content/themes/rubrash/template-parts/content-none.php

<?php
/**
 * @author  rs-theme
 * @since   1.0
 * @version 1.0 
 */
?>

<section class="no-results not-found">
	<div class="page-content">
		<?php
		if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>

			<p><?php
				printf(
					wp_kses(
						/* translators: 1: link to WP admin new post page. */
						__( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'rubrash' ),
						array(
							'a' => array(
								'href' => array(),
							),
						)
					),
					esc_url( admin_url( 'post-new.php' ) )
				);
			?></p>

		<?php elseif ( is_search() ) : ?>

			<p><?php __( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'rubrash' ); ?></p>
			<?php
				get_search_form();

		else : ?>

			<p><?php __( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'rubrash' ); ?></p>
			<?php
				get_search_form();

		endif; ?>
	</div><!-- .page-content -->
</section><!-- .no-results -->