Hello,

I set my blog up to show only one post per page. While viewing the layout I noticed that the blog does, in fact, show only one post per page, but I also noticed that there is no link underneath that post - directing readers to older blog entries/posts.

Is there a code that I can incorporate into my HTML code in order to have the "previous posts" link at the bottom of the screen under the latest post? Has the link been disabled from the code that I am using [posted below]?


CODE
<!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">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>The leading lady</title>

<style type="text/css">
#navbar-iframe {
height:0px;
visibility:hidden;
display:none;
}

A:link, A:visited, A:active {
font-family: Arial;
font-size: 7.5pt;
text-decoration: none;
font-weight: none;
background-color: none;
text-transform: lowercase;
color: #777;
letter-spacing: 0pt;
line-height: 100%;
}

A:hover {
font-family: Arial;
font-size: 7.5pt;
text-decoration: none;
font-weight: none;
color: #000;
letter-spacing: 0pt;
text-transform: lowercase;
cursor: default;
background-color: none;
line-height: 100%;
}

body {
background-color: #FFF;
font-family: Arial;
color: #000;
font-size: 8pt;
line-height: 110%;
margin: 0px;
padding: 0px;
text-align: justify;
}

#main {
top: 130px;
left: 160px;
width: 250px;
position: absolute;
font-family: Arial;
font-size: 7.5pt;
color: #000;
}

#sidebar {
top: 250px;
left: 430px;
width: 130px;
position: absolute;
font-family: Arial;
font-size: 7.5pt;
color: #000;
}

.h1 {
font-family: Arial;
font-size: 11.5pt;
color: #000;
letter-spacing: -1.5pt;
text-align: left;
padding-left: 0px;
line-height: 100%;
text-transform: lowercase;
}

.h2 {
font-family: georgia;
font-size: 7pt;
color: #555;
letter-spacing: 0pt;
text-align: left;
padding-left: 0px;
line-height: 150%;
}

blockquote {
background-color: #FCFCFC;
border: 1px solid #F8F8F8;
font-family: courier new;
padding: 10px;
color: #000;
}

blockquote:hover {
filter:alpha(opacity=80);
-moz-opacity: .8;
opacity: .8;
}

::-moz-selection {
color: #000;
background: #EEE;
}

b, strong, i, em, s, strike, u, underline {
font-family: courier new;
color: #000;
}

u, underline {
text-decoration: none;
border-bottom: 1px dashed #555;
line-height: 80%;
}

</head>
</style>

<body>

<div>
<img src="http://cbimg9.com/layouts/08/11/32346aa.png">
</div>

<div id="main">
<blogger>
<div class="h1"><BlogItemTitle><$BlogItemTitle$></BlogItemTitle></div>
<$blogitembody$><br>
</blogger>
</div>

<div id="sidebar">
<div class="h1">Information</div>
<b>Layout:</b> Leading lady.<br>
<b>Best viewed:</b> Firefox.<br>
<b>Screen:</b> 1280X800.<br><br>

<div class="h1">Profile</div>
TESTING<br><br>

<div class="h1">Links</div>
<a href="http://changethisurl.blogspot.com/" target="_blank">Edward</a><br>
<a href="http://changethisurl.blogspot.com/" target="_blank">Bella</a><br>
<a href="http://changethisurl.blogspot.com/" target="_blank">Alice</a><br>
<a href="http://changethisurl.blogspot.com/" target="_blank">Jacob</a><br>
<a href="http://changethisurl.blogspot.com/" target="_blank">Esme</a><br>
<a href="http://changethisurl.blogspot.com/" target="_blank">Rosalie</a><br>
<a href="http://changethisurl.blogspot.com/" target="_blank">Renesmee</a><br><br>

<div class="h1">Tagboard</div>
Tagboard codes here. Maximum 120px width recommended, unless you want your blog to look weird and screwed for the sidebar area.<br><br>

<div class="h1">Credits</div>
Please do not remove this. Thankyou.<br>
<a href="http://www.blogskins.com/me/tuesdaynight" target="_blank">x</a><a href="http://leromantique.livejournal.com/" target="_blank">x</a><a href="http://community.livejournal.com/modelcouture/941145.html#cutid1" target="_blank">x</a>
</body>
</html>