bliss
Joined: 23 Jun 2004 Posts: 5 Location: new jersey
|
Posted: Thu Aug 19, 2004 4:10 am Post subject: Where's the date?! |
|
|
Hi there! I had installed b2 into my old domain about 6 months ago and it worked wonderfully for me, but I recently purchased a new domain and have decided to reinstall b2 for the new one. I customized the template to match my website and everything seemed to have gone smoothly, except this: Only the date corresponding to the most recent entry shows up! As soon as I make a new entry, the entry behind it no longer shows the date that it was posted.
My website is here, and this is the coding for my index.php page:
Code: | <?php /* Don't remove this line, it calls the b2 function files ! */ $blog=1; include ("blog.header.php"); ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<!-- layout credits goto http://bluerobot.com/web/layouts/layout2.html -->
<head>
<title>IN-REVERSE.ORG // like other perfect things...</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="reply-to" content="<?php bloginfo('admin_email'); ?>" />
<meta http-equiv="imagetoolbar" content="no" />
<meta content="TRUE" name="MSSmartTagsPreventParsing" />
<style type="text/css" media="screen">
@import url( v01.css );
</style>
<link rel="stylesheet" type="text/css" media="print" href="print.css" />
<link rel="alternate" type="application/rdf+xml" title="RDF" href="<?php bloginfo('rdf_url'); ?>" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php bloginfo('rss2_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
<?php comments_popup_script() ?>
</head>
<body>
<span style="position: relative; top: 0px; left: 45px;"><img src="v01/v01.png"></span>
<!-- // b2 loop start -->
<span style="position: absolute; top: 560px; left: 205px;">
<table border="0" cellpadding="5" cellspacing="10" width="495">
<?php while($row = mysql_fetch_object($result)) { start_b2(); ?>
<br> <u><?php the_date("","",""); ?></u> //
<?php comments_popup_link("C0MMENTS", "C1MMENT", "C%MMENTS") ?>
</div>
<?php permalink_anchor(); ?>
<div class="storyContent">
<?php the_content(); ?><br>
<img src="v01/right.png"> posted by <a href="mailto:[email protected]">Lauren</a> at <?php the_time() ?>
<br>
<!-- this includes the comments and a form to add a new comment -->
<?php include ("b2comments.php"); ?>
</div>
</div>
<!-- // this is just the end of the motor - don't touch that line either :) -->
<?php } ?>
</div>
</table>
</span>
</body>
</html>
|
Any ideas at all as to why this may be happening? I'd appreciate any help that you all can provide.
Lauren |
|