2003-12-10 19:22:36 -05:00
< ? php
2004-04-23 00:05:26 -04:00
/* Don't remove this line. */
2004-04-15 22:24:37 -04:00
require ( './wp-blog-header.php' );
2003-05-23 09:49:31 -04:00
?>
2003-05-06 04:06:57 -04:00
<! DOCTYPE html PUBLIC " -//W3C//DTD XHTML 1.0 Transitional//EN " " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd " >
2003-04-01 09:12:34 -05:00
< html xmlns = " http://www.w3.org/1999/xhtml " >
2004-04-15 22:24:37 -04:00
< head profile = " http://gmpg.org/xfn/1 " >
2003-12-24 19:01:31 -05:00
< title >< ? php bloginfo ( 'name' ); ?> <?php wp_title(); ?></title>
2003-04-03 03:16:37 -05:00
2004-04-24 15:23:57 -04:00
< meta http - equiv = " Content-Type " content = " text/html; charset=<?php bloginfo('charset'); ?> " />
< meta name = " generator " content = " WordPress <?php bloginfo('version'); ?> " /> <!-- leave this for stats -->
2003-05-21 07:29:44 -04:00
2003-04-03 03:16:37 -05:00
< style type = " text/css " media = " screen " >
2004-04-28 03:27:03 -04:00
@ import url ( < ? php echo get_settings ( 'siteurl' ); ?> /wp-layout.css );
2003-04-03 03:16:37 -05:00
</ style >
2004-04-28 03:27:03 -04:00
< link rel = " stylesheet " type = " text/css " media = " print " href = " <?php echo get_settings('siteurl'); ?>/print.css " />
2004-02-21 07:28:36 -05:00
< link rel = " alternate " type = " application/rss+xml " title = " RSS 2.0 " href = " <?php bloginfo('rss2_url'); ?> " />
2003-12-18 04:45:34 -05:00
< link rel = " alternate " type = " text/xml " title = " RSS .92 " href = " <?php bloginfo('rss_url'); ?> " />
2003-12-30 07:05:25 -05:00
< link rel = " alternate " type = " application/atom+xml " title = " Atom 0.3 " href = " <?php bloginfo('atom_url'); ?> " />
2003-12-18 04:45:34 -05:00
2003-04-03 03:16:37 -05:00
< link rel = " pingback " href = " <?php bloginfo('pingback_url'); ?> " />
2004-04-24 15:23:57 -04:00
< ? php wp_get_archives ( 'type=monthly&format=link' ); ?>
2003-11-03 19:19:53 -05:00
< ? php //comments_popup_script(); // off by default ?>
2004-04-15 22:24:37 -04:00
< ? php wp_head (); ?>
2003-04-01 09:12:34 -05:00
</ head >
2003-04-03 03:16:37 -05:00
2003-04-01 09:12:34 -05:00
< body >
2003-07-23 16:27:34 -04:00
< div id = " rap " >
2004-04-24 15:23:57 -04:00
< h1 id = " header " >< a href = " <?php bloginfo('url'); ?> " >< ? php bloginfo ( 'name' ); ?> </a></h1>
2003-04-01 09:12:34 -05:00
2003-04-03 03:16:37 -05:00
< div id = " content " >
2004-04-15 22:24:37 -04:00
< ? php if ( $posts ) : foreach ( $posts as $post ) : start_wp (); ?>
2003-04-01 09:12:34 -05:00
2003-12-04 17:53:15 -05:00
< ? php the_date ( '' , '<h2>' , '</h2>' ); ?>
< div class = " post " >
2004-04-21 00:12:55 -04:00
< h3 class = " storytitle " id = " post-<?php the_ID(); ?> " >< a href = " <?php the_permalink() ?> " rel = " bookmark " title = " Permanent Link: <?php the_title(); ?> " >< ? php the_title (); ?> </a></h3>
2004-06-10 03:42:48 -04:00
< div class = " meta " >< ? php _e ( " Filed under: " ); ?> <?php the_category(',') ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>
2003-12-04 17:53:15 -05:00
< div class = " storycontent " >
< ? php the_content (); ?>
</ div >
< div class = " feedback " >
2004-04-24 15:23:57 -04:00
< ? php wp_link_pages (); ?>
< ? php comments_popup_link ( __ ( 'Comments (0)' ), __ ( 'Comments (1)' ), __ ( 'Comments (%)' )); ?>
2003-12-04 17:53:15 -05:00
</ div >
<!--
< ? php trackback_rdf (); ?>
-->
2003-08-24 12:51:32 -04:00
2003-12-04 17:53:15 -05:00
</ div >
2003-04-01 09:12:34 -05:00
2004-06-10 03:42:48 -04:00
< ? php comments_template (); // Get wp-comments.php template ?>
2004-04-15 22:24:37 -04:00
< ? php endforeach ; else : ?>
2004-04-24 15:23:57 -04:00
< p >< ? php _e ( 'Sorry, no posts matched your criteria.' ); ?> </p>
2004-04-15 22:24:37 -04:00
< ? php endif ; ?>
2004-07-28 23:34:08 -04:00
< ? php posts_nav_link ( ' — ' , __ ( '« Previous Page' ), __ ( 'Next Page »' )); ?>
2003-04-01 09:12:34 -05:00
</ div >
< div id = " menu " >
2003-04-03 03:16:37 -05:00
< ul >
2004-01-01 17:13:06 -05:00
< ? php get_links_list (); ?>
2004-04-24 15:23:57 -04:00
< li id = " categories " >< ? php _e ( 'Categories:' ); ?>
2003-05-06 04:06:57 -04:00
< ul >
2004-02-13 11:14:36 -05:00
< ? php wp_list_cats (); ?>
2003-05-06 04:06:57 -04:00
</ ul >
2003-04-03 03:16:37 -05:00
</ li >
2004-02-27 14:22:56 -05:00
< li id = " search " >
2004-04-24 15:23:57 -04:00
< label for = " s " >< ? php _e ( 'Search:' ); ?> </label>
2004-02-27 14:22:56 -05:00
< form id = " searchform " method = " get " action = " <?php echo $PHP_SELF ; ?> " >
2003-04-03 03:16:37 -05:00
< div >
2004-02-27 14:22:56 -05:00
< input type = " text " name = " s " id = " s " size = " 15 " />< br />
2004-04-24 15:23:57 -04:00
< input type = " submit " name = " submit " value = " <?php _e('Search'); ?> " />
2003-04-03 03:16:37 -05:00
</ div >
</ form >
</ li >
2004-04-24 15:23:57 -04:00
< li id = " archives " >< ? php _e ( 'Archives:' ); ?>
2003-05-06 04:06:57 -04:00
< ul >
2004-04-24 15:23:57 -04:00
< ? php wp_get_archives ( 'type=monthly' ); ?>
2003-05-06 04:06:57 -04:00
</ ul >
2003-04-03 03:16:37 -05:00
</ li >
2004-01-24 17:52:22 -05:00
< li id = " calendar " >
2003-11-03 12:22:01 -05:00
< ? php get_calendar (); ?>
2003-09-19 19:13:09 -04:00
</ li >
2004-04-24 15:23:57 -04:00
< li id = " meta " >< ? php _e ( 'Meta:' ); ?>
2003-04-03 03:16:37 -05:00
< ul >
2004-07-10 19:34:47 -04:00
< li >< ? php wp_register (); ?> </li>
< li >< ? php wp_loginout (); ?> </li>
2004-06-24 17:57:42 -04:00
< li >< a href = " <?php bloginfo('rss2_url'); ?> " title = " <?php _e('Syndicate this site using RSS'); ?> " >< ? php _e ( '<abbr title="Really Simple Syndication">RSS</abbr>' ); ?> </a></li>
< li >< a href = " <?php bloginfo('comments_rss2_url'); ?> " title = " <?php _e('The latest comments to all posts in RSS'); ?> " >< ? php _e ( 'Comments <abbr title="Really Simple Syndication">RSS</abbr>' ); ?> </a></li>
2004-04-24 15:23:57 -04:00
< li >< a href = " http://validator.w3.org/check/referer " title = " <?php _e('This page validates as XHTML 1.0 Transitional'); ?> " >< ? php _e ( 'Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>' ); ?> </a></li>
2004-06-24 17:57:42 -04:00
< li >< a href = " http://gmpg.org/xfn/ " >< abbr title = " XHTML Friends Network " > XFN </ abbr ></ a ></ li >
< li >< a href = " http://wordpress.org/ " title = " <?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?> " >< abbr title = " WordPress " > WP </ abbr ></ a ></ li >
2004-07-10 19:34:47 -04:00
< ? php wp_meta (); ?>
2003-04-03 03:16:37 -05:00
</ ul >
</ li >
2003-06-12 18:43:34 -04:00
2003-04-03 03:16:37 -05:00
</ ul >
2003-04-01 09:12:34 -05:00
</ div >
2003-07-23 16:27:34 -04:00
</ div >
2003-04-01 09:12:34 -05:00
2004-06-13 12:14:58 -04:00
< p class = " credit " ><!--< ? php echo $wpdb -> num_queries ; ?> queries. <?php timer_stop(1); ?> seconds. --> <cite><?php echo sprintf(__("Powered by <a href='http://wordpress.org' title='%s'><strong>WordPress</strong></a>"), __("Powered by WordPress, state-of-the-art semantic personal publishing platform.")); ?></cite></p>
2003-05-06 04:06:57 -04:00
</ body >
2004-04-15 21:56:04 -04:00
</ html >