An updated theme (based on Atticus Finch) for ClassicPress
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
1.3 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <?php
  2. /**
  3. * The main template file.
  4. *
  5. * This is the most generic template file in a WordPress theme
  6. * and one of the two required files for a theme (the other being style.css).
  7. * It is used to display a page when nothing more specific matches a query.
  8. * E.g., it puts together the home page when no home.php file exists.
  9. * Learn more: http://codex.wordpress.org/Template_Hierarchy
  10. *
  11. * @package Portage
  12. */
  13. get_header();
  14. ?>
  15. <?php get_sidebar(); ?>
  16. <div id="content">
  17. <!-- Post title info -->
  18. <div class="post" >
  19. <h2 id="post-<?php the_ID(); ?>" class="post-title">
  20. <?php _e( '404: We can\'t find that page', 'portage' ); ?>
  21. </h2>
  22. <!-- Post content -->
  23. <div class="post-content">
  24. <p><img src='<?php echo get_template_directory_uri(); ?>/images/404.jpg' /></p>
  25. <p>
  26. <?php
  27. _e( 'Sorry, that page or post doesn\'t appear to be here. It may have been deleted, moved, or at the other end of an outdated link.', 'portage' );
  28. ?>
  29. </p>
  30. <p>
  31. <?php
  32. _e( 'You can use the menus, categories, or tags to find what you are looking for. You can also use the search form below.', 'portage' );
  33. ?>
  34. </p>
  35. <p id="404search">
  36. <?php
  37. get_search_form();
  38. ?>
  39. </p>
  40. </div>
  41. </div><!-- end "post" -->
  42. </div> <!-- end Content -->
  43. <div class="clear"></div>
  44. <?php get_footer(); ?>