<?php
/*
 *   No Result Found Template.
 */ 

printf( '<h2 class="nothing-found">%1$s</h2>',

	// 1
	esc_html__( 'Nothing Found', 'inspirelite' )
);


if ( is_home() && current_user_can( 'publish_posts' ) ) {

	printf('<p class="nothing-found"> %1$s <a href="%2$s">%3$s</a>.</p>',

		// 1
		esc_html__( 'Ready to publish your first post ?', 'inspirelite' ),

		// 2
		esc_url( admin_url( 'post-new.php' ) ),

		// 3
		esc_html__( 'Get started here', 'inspirelite' )
	);


}elseif ( is_search() ){

	printf( '<p class="nothing-found">%1$s</p>',

		// 1
		esc_html__( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'inspirelite' )
	);


	get_search_form();


}else{

	printf( '<p class="nothing-found">%1$s</p>',

		// 1
		esc_html__( 'It seems we can&rsquo;t find what you&rsquo;re looking for. Perhaps searching can help.', 'inspirelite' )
	);


	get_search_form();  

}