404.php 884 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * 404 page template
  4. *
  5. * @package vamtam/consulting
  6. */
  7. get_header(); ?>
  8. <div class="clearfix">
  9. <div id="header-404" style="background: url('<?php echo esc_attr( VAMTAM_IMAGES ) ?>404.svg') no-repeat left 110px / 130px">
  10. <div class="line-1"><?php echo esc_html_x( '404', 'page not found error', 'vamtam-consulting' ) ?></div>
  11. <div class="line-2"><?php esc_html_e( 'Holy guacamole!', 'vamtam-consulting' ) ?></div>
  12. <div class="line-3"><?php esc_html_e( 'Looks like this page is on vacation. Or just playing hard to get. At any rate... it is not here.', 'vamtam-consulting' ) ?></div>
  13. <div class="line-4"><a href="<?php echo esc_url( home_url( '/' ) ) ?>"><?php echo esc_html__( '&larr; Go to the home page or just search...', 'vamtam-consulting' ) ?></a></div>
  14. </div>
  15. <div class="page-404">
  16. <?php get_search_form(); ?>
  17. </div>
  18. </div>
  19. <?php get_footer(); ?>