On a simple blog with a rail displaying the latest 3 entries, the initial load and home page render fine. Once you click on the permalink to hit the view template though, the embeds do not pull any data or only pull one entry.
This is the index code :
<div>
{exp:weblog:entries weblog="blog_post" orderby="date" sort="desc" limit="2" paginate="bottom"}
<div class="article">
<h1>{title}</h1>
<h2 class="date_name">{entry_date format="%F %d, %Y"} | {author} </h2>
<div class="copy">
{if wb_image}
{wb_image}
{wb_image_file}
{/wb_image}
{/if}
{wb_body}
</div>
<div class="clear"></div>
<div class="links">
<div class="more">
<a href="http://{title_permalink=">Read full article »</a>
</div>
</div>
</div>
<div class="clear"></div>
{/exp:weblog:entries}
</div>
<div id="rail_right" class="grid_3">
<div id="rail_content" class="png">
{embed="Includes/rail_recents"}
</div>
<div class="clear"></div>
</div>This is the view code :
<div id="body_left" class="grid_9">
{exp:weblog:entries weblog="blog_post" limit="1"}
<div class="article">
<h1>{title}</h1>
<h2 class="date_name">{entry_date format="%F %d, %Y"} | {author}</h2>
<div class="copy">
{if wb_image}
{wb_image}
{wb_image_file}
{/wb_image}
{/if}
{wb_body}
</div>
<div class="clear"></div>
</div>
<div class="clear"></div>
{/exp:weblog:entries}
</div>
<div id="rail_right" class="grid_3">
<div id="rail_content" class="png">
{embed="Includes/rail_recents"}
</div>
<div class="clear"></div>
</div>Essentially the same thing. It works in the index, but not in the view…