2003-12-11 01:22:36 +01:00
< ? php
/* Don't remove these lines. */
2003-08-24 18:51:32 +02:00
$blog = 1 ;
2003-12-11 01:22:36 +01:00
require_once ( 'wp-blog-header.php' );
2003-05-23 15:49:31 +02:00
?>
2003-05-06 10:06:57 +02:00
<! DOCTYPE html PUBLIC " -//W3C//DTD XHTML 1.0 Transitional//EN " " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd " >
2003-04-01 16:12:34 +02:00
< html xmlns = " http://www.w3.org/1999/xhtml " >
< head >
2003-12-25 01:01:31 +01:00
< title >< ? php bloginfo ( 'name' ); ?> <?php wp_title(); ?></title>
2003-04-03 10:16:37 +02:00
< meta http - equiv = " Content-Type " content = " text/html; charset=iso-8859-1 " />
2003-12-18 10:45:34 +01:00
< meta name = " generator " content = " WordPress <?php echo $wp_version ; ?> " /> <!-- leave this for stats -->
2003-05-21 13:29:44 +02:00
2003-04-03 10:16:37 +02:00
< style type = " text/css " media = " screen " >
2003-08-23 08:03:38 +02:00
@ import url ( < ? php echo $siteurl ; ?> /wp-layout.css );
2003-04-03 10:16:37 +02:00
</ style >
2003-05-25 14:43:31 +02:00
< link rel = " stylesheet " type = " text/css " media = " print " href = " <?php echo $siteurl ; ?>/print.css " />
2003-04-03 10:16:37 +02:00
< link rel = " alternate " type = " text/xml " title = " RDF " href = " <?php bloginfo('rdf_url'); ?> " />
2003-12-18 10:45:34 +01:00
< link rel = " alternate " type = " text/xml " title = " RSS 2.0 " href = " <?php bloginfo('rss2_url'); ?> " />
< link rel = " alternate " type = " text/xml " title = " RSS .92 " href = " <?php bloginfo('rss_url'); ?> " />
2003-12-30 13:05:25 +01:00
< link rel = " alternate " type = " application/atom+xml " title = " Atom 0.3 " href = " <?php bloginfo('atom_url'); ?> " />
2003-12-18 10:45:34 +01:00
2003-04-03 10:16:37 +02:00
< link rel = " pingback " href = " <?php bloginfo('pingback_url'); ?> " />
2003-08-06 00:44:38 +02:00
< ? php get_archives ( 'monthly' , '' , 'link' ); ?>
2003-11-04 01:19:53 +01:00
< ? php //comments_popup_script(); // off by default ?>
2003-08-24 18:51:32 +02:00
2003-04-01 16:12:34 +02:00
</ head >
2003-04-03 10:16:37 +02:00
2003-04-01 16:12:34 +02:00
< body >
2003-07-23 22:27:34 +02:00
< div id = " rap " >
2003-05-06 10:48:48 +02:00
< h1 id = " header " >< a href = " <?php echo $siteurl ; ?> " title = " <?php bloginfo('name'); ?> " >< ? php bloginfo ( 'name' ); ?> </a></h1>
2003-04-01 16:12:34 +02:00
2003-04-03 10:16:37 +02:00
< div id = " content " >
2003-12-18 10:36:13 +01:00
< ? php if ( $posts ) { foreach ( $posts as $post ) { start_wp (); ?>
2003-04-01 16:12:34 +02:00
2003-12-04 23:53:15 +01:00
< ? php the_date ( '' , '<h2>' , '</h2>' ); ?>
< div class = " post " >
< h3 class = " storytitle " id = " post-<?php the_ID(); ?> " >< a href = " <?php echo get_permalink() ?> " rel = " bookmark " title = " Permanent Link: <?php the_title(); ?> " >< ? php the_title (); ?> </a></h3>
2003-12-30 11:48:06 +01:00
< div class = " meta " > Filed under : < ? php the_category () ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div>
2003-12-04 23:53:15 +01:00
< div class = " storycontent " >
< ? php the_content (); ?>
</ div >
< div class = " feedback " >
< ? php link_pages ( '<br />Pages: ' , '<br />' , 'number' ); ?>
< ? php comments_popup_link ( 'Comments (0)' , 'Comments (1)' , 'Comments (%)' ); ?>
</ div >
<!--
< ? php trackback_rdf (); ?>
-->
2003-08-24 18:51:32 +02:00
2003-12-18 10:36:13 +01:00
< ? php include ( ABSPATH . 'wp-comments.php' ); ?>
2003-12-04 23:53:15 +01:00
</ div >
2003-04-01 16:12:34 +02:00
2003-10-26 06:25:26 +01:00
< ? php } } else { // end foreach, end if any posts ?>
< p > Sorry , no posts matched your criteria .</ p >
< ? php } ?>
2003-04-01 16:12:34 +02:00
</ div >
< div id = " menu " >
2003-04-03 10:16:37 +02:00
< ul >
2004-01-01 23:13:06 +01:00
< ? php get_links_list (); ?>
2003-04-03 10:16:37 +02:00
< li > Categories :
2003-05-06 10:06:57 +02:00
< ul >
< ? php list_cats ( 0 , 'All' , 'name' ); ?>
</ ul >
2003-04-03 10:16:37 +02:00
</ li >
< li > Search :
2003-05-23 15:49:31 +02:00
< form id = " searchform " method = " get " action = " <?php echo $PHP_SELF ; /* $siteurl . " / " . $blogfilename */ ?> " >
2003-04-03 10:16:37 +02:00
< div >
< input type = " text " name = " s " size = " 15 " />< br />
< input type = " submit " name = " submit " value = " search " />
</ div >
</ form >
</ li >
< li > Archives :
2003-05-06 10:06:57 +02:00
< ul >
2003-09-22 01:22:49 +02:00
< ? php get_archives ( 'monthly' ); ?>
2003-05-06 10:06:57 +02:00
</ ul >
2003-04-03 10:16:37 +02:00
</ li >
2003-11-08 03:54:23 +01:00
< li >
2003-11-03 18:22:01 +01:00
< ? php get_calendar (); ?>
2003-09-20 01:13:09 +02:00
</ li >
2003-04-03 10:16:37 +02:00
< li > Other :
< ul >
2003-12-11 01:22:36 +01:00
< li >< a href = " <?php echo $siteurl ; ?>/wp-login.php " > login </ a ></ li >
2003-12-16 02:58:39 +01:00
< li >< a href = " <?php echo $siteurl ; ?>/wp-register.php " > register </ a ></ li >
2003-04-03 10:16:37 +02:00
</ ul >
</ li >
2003-05-26 12:24:55 +02:00
< li > Meta :
2003-04-03 10:16:37 +02:00
< ul >
2003-12-18 10:45:34 +01:00
< li >< a href = " <?php bloginfo('rss2_url'); ?> " title = " Syndicate this site using RSS " >< abbr title = " Really Simple Syndication " > RSS </ abbr > 2.0 </ a ></ li >
< li >< a href = " <?php bloginfo('comments_rss2_url'); ?> " title = " The latest comments to all posts in RSS " > Comments < abbr title = " Really Simple Syndication " > RSS </ abbr > 2.0 </ a ></ li >
2003-06-04 19:42:41 +02:00
< li >< a href = " http://validator.w3.org/check/referer " title = " This page validates as XHTML 1.0 Transitional " > Valid < abbr title = " eXtensible HyperText Markup Language " > XHTML </ abbr ></ a ></ li >
2003-12-18 10:45:34 +01:00
< li >< a href = " http://wordpress.org " title = " Powered by WordPress, state-of-the-art semantic personal publishing platform " > WP </ a ></ li >
2003-04-03 10:16:37 +02:00
</ ul >
</ li >
2003-06-13 00:43:34 +02:00
2003-04-03 10:16:37 +02:00
</ ul >
2003-04-01 16:12:34 +02:00
</ div >
2003-07-23 22:27:34 +02:00
</ div >
2003-04-01 16:12:34 +02:00
2003-12-18 10:45:34 +01:00
< p class = " credit " >< ? php echo $wpdb -> querycount ; ?> queries. <?php timer_stop(1); ?> <cite>Powered by <a href="http://wordpress.org" title="Powered by WordPress, state-of-the-art semantic personal publishing platform"><strong>WordPress</strong></a></cite></p>
2003-05-06 10:06:57 +02:00
</ body >
2003-12-18 10:45:34 +01:00
</ html >