GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Description: Hemingway is a template for Wordpress
Homepage: http://warpspire.com/hemingway
Clone URL: git://github.com/kneath/hemingway.git
kneath (author)
Mon Mar 24 00:26:55 -0700 2008
hemingway / 404.php
100755 31 lines (26 sloc) 1.136 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php get_header(); ?>
 
<div id="primary" class="single-post">
  <div class="inside">
    <div class="primary">
      <h1><?php _e('Page not found') ?></h1>
      <p><?php _e("It looks like there's a problem with the page you're trying to get to. If you're looking for something in particular, try using the search form below, or by browsing the archives.") ?></p>
      
      <h2><?php _e('Search this site:') ?></h2>
      <?php include (TEMPLATEPATH . '/searchform.php'); ?>
      
      <h2><?php _e('Archives by month:') ?></h2>
      <ul>
        <?php wp_get_archives('type=monthly'); ?>
      </ul>
  
      <h2><?php _e('Archives by subject:') ?></h2>
      <ul>
         <?php wp_list_cats(); ?>
      </ul>
    </div>
    <div class="secondary">
      <h2><?php _e('Why am I seeing this?') ?></h2>
      <p><?php _e("You requested a page that doesn't exist on this site any more. This could be caused by a link you followed that was out of date, by a typing in the wrong address in the address bar, or simply because the post has been deleted.") ?></p>
    </div>
    <div class="clear"></div>
  </div>
</div>
<?php get_sidebar(); ?>
 
<?php get_footer(); ?>