2003-08-06 00:44:38 +02:00
|
|
|
<?php /* Don't remove these lines, they call the b2 function files ! */
|
2003-08-24 18:51:32 +02:00
|
|
|
$blog = 1;
|
2003-06-04 19:12:41 +02:00
|
|
|
require_once('blog.header.php');
|
2003-06-13 00:43:34 +02:00
|
|
|
require_once($abspath.'wp-links/links.php');
|
2003-08-06 00:44:38 +02:00
|
|
|
// not on by default: require_once($abspath.'wp-links/links.weblogs.com.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-04-03 10:16:37 +02:00
|
|
|
<title><?php bloginfo('name') ?><?php single_post_title(' :: ') ?><?php single_cat_title(' :: ') ?><?php single_month_title(' :: ') ?></title>
|
|
|
|
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
2003-08-24 18:51:32 +02:00
|
|
|
<meta name="generator" content="WordPress .72" /> <!-- 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'); ?>" />
|
|
|
|
<link rel="alternate" type="text/xml" title="RSS" href="<?php bloginfo('rss2_url'); ?>" />
|
|
|
|
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
|
2003-08-06 00:44:38 +02:00
|
|
|
<?php get_archives('monthly', '', 'link'); ?>
|
2003-05-26 12:27:44 +02: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-06-04 23:21:14 +02:00
|
|
|
<?php if ($posts) { foreach ($posts as $post) { start_b2(); ?>
|
2003-04-03 10:16:37 +02:00
|
|
|
<?php the_date('','<h2>','</h2>'); ?>
|
|
|
|
|
2003-06-11 21:48:53 +02:00
|
|
|
<h3 class="storytitle" id="post-<?php the_ID(); ?>">
|
2003-08-24 18:51:32 +02:00
|
|
|
<a href="<?php permalink_link() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a>
|
|
|
|
<span class="meta"><a href="?cat=<?php the_category_ID() ?>" title="Category: <?php the_category() ?>">[<?php the_category() ?>]</a> — <?php the_author() ?> @ <?php the_time() ?></span>
|
2003-05-26 12:24:55 +02:00
|
|
|
</h3>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2003-05-21 13:29:44 +02:00
|
|
|
<div class="storycontent">
|
2003-05-26 12:24:55 +02:00
|
|
|
<?php the_content(); ?>
|
|
|
|
</div>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2003-04-03 10:16:37 +02:00
|
|
|
<div class="feedback">
|
2003-05-26 12:24:55 +02:00
|
|
|
<?php link_pages('<br />Pages: ', '<br />', 'number'); ?>
|
|
|
|
<?php comments_popup_link('Comments (0)', 'Comments (1)', 'Comments (%)'); ?>
|
2003-05-21 13:29:44 +02:00
|
|
|
</div>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2003-08-24 18:51:32 +02:00
|
|
|
<!--
|
2003-05-26 12:24:55 +02:00
|
|
|
<?php trackback_rdf(); ?>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2003-08-24 18:51:32 +02:00
|
|
|
-->
|
|
|
|
|
2003-08-15 20:19:07 +02:00
|
|
|
<?php include($abspath . 'b2comments.php'); ?>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
2003-08-06 00:44:38 +02:00
|
|
|
<?php } } // end foreach, end if any posts ?>
|
2003-04-01 16:12:34 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div id="menu">
|
|
|
|
|
2003-04-03 10:16:37 +02:00
|
|
|
<ul>
|
2003-06-13 00:43:34 +02:00
|
|
|
<li>Links:
|
2003-04-03 10:16:37 +02:00
|
|
|
<ul>
|
2003-06-04 19:12:41 +02:00
|
|
|
<?php get_links(-1, '<li>', '</li>', '', 0, '_updated', 0, 0, -1, -1)?>
|
2003-04-03 10:16:37 +02:00
|
|
|
</ul>
|
|
|
|
</li>
|
|
|
|
<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-09-20 01:13:09 +02:00
|
|
|
<li>Calendar:
|
2003-09-27 01:15:12 +02:00
|
|
|
<ul>
|
|
|
|
<li>
|
2003-09-20 01:13:09 +02:00
|
|
|
<?php include_once('b2calendar.php')?>
|
2003-09-27 01:15:12 +02:00
|
|
|
</li>
|
|
|
|
</ul>
|
2003-09-20 01:13:09 +02:00
|
|
|
</li>
|
2003-04-03 10:16:37 +02:00
|
|
|
<li>Other:
|
|
|
|
<ul>
|
|
|
|
<li><a href="b2login.php">login</a></li>
|
|
|
|
<li><a href="b2register.php">register</a></li>
|
|
|
|
</ul>
|
|
|
|
</li>
|
2003-05-26 12:24:55 +02:00
|
|
|
<li>Meta:
|
2003-04-03 10:16:37 +02:00
|
|
|
<ul>
|
2003-05-23 15:49:31 +02:00
|
|
|
<li><a href="b2rss.php">RSS .92</a></li>
|
|
|
|
<li><a href="b2rdf.php">RDF 1.0</a></li>
|
|
|
|
<li><a href="b2rss2.php">RSS 2.0</a></li>
|
2003-09-28 21:08:43 +02:00
|
|
|
<li><a href="wp-commentsrss2.php">Comments RSS 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-05-26 12:24:55 +02:00
|
|
|
<li><a href="http://wordpress.org" title="Powered by WordPress, 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-10-05 23:15:44 +02:00
|
|
|
<p class="credit"><?php timer_stop(1); ?> <cite>Powered by <a href="http://wordpress.org"><strong>WordPress</strong></a></cite></p>
|
|
|
|
|
2003-05-06 10:06:57 +02:00
|
|
|
</body>
|
2003-06-04 23:21:14 +02:00
|
|
|
</html>
|