Any help as to where I should be looking to troubleshoot would be greatly appreciated. I'm pulling out my hair ATM.
Here are the contents of my test detail template:
Code: Select all
<h2 class="newstitle">{$entry->title}</h2>
<p class="date">{if $entry->formatpostdate}{$entry->formatpostdate}{/if}</p>
<p>{eval var=$entry->content}</p>
Code: Select all
<!-- Start News Display Template -->
<p align="right"><a href="/News/rss/{$entry->category}" title="Subscribe to feed">Subscribe to feed <img border="0" src="uploads/images/feed-icon-14x14.png" alt="Subscribe to feed" /></a></p>
{foreach from=$items item=entry}
<div class="newsitem">
{if $entry->titlelink}
<h3>{$entry->titlelink}</h3>
{/if}
{if $entry->summary}
<p>{eval var=$entry->summary} {$entry->morelink}</p>
{/if}
</div>
{/foreach}
<p align="right"><a href="/News/rss/{$entry->category}" title="Subscribe to feed">Subscribe to feed <img border="0" src="uploads/images/feed-icon-14x14.png" alt="Subscribe to feed" /></a></p>
<!-- End News Display Template -->