Here is my Details page:
<div id="yui-main">
<div class="yui-b">
{exp:weblog:entries weblog="projects" limit="1" order_by="date" sort="asc"}
{exp:weblog:category_heading weblog='projects'}
<div class="category_header">
<h3>{title}</h3>
<p> </p><h4>{category_name}</h4>
<p> </div><br />
<ul class="prevnext_nav"><br />
<li>{exp:weblog:prev_entry category="{category_id}"}<a href="http://{id_path=site/details_html}category/{category_url_title}">/images/back.gif</a>{/exp:weblog:prev_entry} </li><br />
<li><a href="http://{path=site/listings_html/category/{category_url_title}/}">/images/BackToThumbs.gif</a></li><br />
<li>{exp:weblog:next_entry category="{category_id}"}<a href="http://{id_path=site/details_html}category/{category_url_title}">/images/forward.gif</a>{/exp:weblog:next_entry}</li><br />
</ul><br />
<br />
<div class="project_item"><br />
<div class="image_area"><br />
{images}<br />
{exp:imgsizer:size src="{file_url}" width="526" alt="{title}"}<br />
{/images}<br />
</div><br />
ID:AM{category_url_title}{entry_id}<br />
Description:{description}<br />
</div><br />
{/exp:weblog:category_heading}<br />
{/exp:weblog:entries}<br />
<div class="ft"><br />
Copyright <strong>©</strong> 2008 Anne-Marie Van Brunt<br />
</div><br />
</div> <br />
</div> <br />
<div class="yui-b"><br />
{embed="site/menu_inc"}<br />
</div>that last embed points to my sidebar menu which is this:
<ul class="menu_main">
<li><a href="http://{path=site/index}">Home</a></li>
<li>
Collections
{exp:weblog:categories weblog="projects"}
> <a href="http://{path=site/listings_html}">{category_name}</a>
{/exp:weblog:categories}
</li>
{exp:weblog:entries weblog="pages" rdf="off" disable="trackbacks" disable="categories"}
<li><a href="http://{page_url}">{title}</a></li>
{/exp:weblog:entries}
<li><a href="http://{path=site/contactinfo}">Contact Info</a></li>
</ul>In that sidebar menu I’m writing out the list of pages as LIs. This appears fine on all other templates except this one above. For this one no pages show up and no errors.
Any ideas?