404.php 874 B

12345678910111213141516171819202122232425262728
  1. <?php get_header(); ?>
  2. <?php do_action( 'foto_before_404_content' ); ?>
  3. <section id="content" class="site-content" role="main">
  4. <?php do_action( 'foto_before_404_article' ); ?>
  5. <article id="post-0" class="post error404 not-found">
  6. <header class="entry-header">
  7. <h1 class="entry-title"><?php _e( 'Oops! That page can&rsquo;t be found', 'foto' ); ?></h1>
  8. </header>
  9. <div class="entry-content">
  10. <p><?php _e( 'It looks like nothing was found at this location. Maybe try you can try to search ?', 'foto' ); ?></p>
  11. <?php get_search_form(); ?>
  12. </div><!-- .entry-content -->
  13. <?php do_action( 'foto_after_404_entry' ); ?>
  14. </article><!-- #post-0 -->
  15. <?php do_action( 'foto_after_404_article' ); ?>
  16. </section><!-- end #content .site-content -->
  17. <?php do_action( 'foto_after_404_content' ); ?>
  18. <?php get_footer(); ?>