I’m struggling to figure out why in my news view template the content that’s being pulled is always from the most recent weblog posting. For example I have two articles on my site with URL’s of http://mysite.com/news/view/article1 and http://mysite.com/news/view/article2
If I’m viewing article1 it will actually display article2’s content instead of article1’s content. Below is the view template, I have a sneaking suspicion I’m overlooking something but can’t quite figure it out.
Thanks,
Craig
<div id="main_content" class="container_24">
{exp:weblog:entries weblog="news" dynamic="off" limit="1" disable="trackbacks|comments status="open"}
<div id="lcol_content" class="grid_12">
{if release_image == ''}
{site_url}images/sized/images/uploads/ice_golf-430x490.jpg
{/if}
{exp:imgsizer:size image="{release_image}" width="440" alt="News Release" id="story-graphic"}
{embed="news/list"}
</div>
<div id="rcol_content" class="grid_11">
<h1>{title}</h1>
<ul class="release_info">
<li>{entry_date format="%F %d %Y"}</li>
<li><strong>By</strong>
{if release_author == ''}{author}{/if}
{release_author}
</li>
</ul>
{release_body}
</div>
{/exp:weblog:entries}
<div class="clear"></div>
</div>