Why would this:
<code>
<cms:pages masterpage='news/blog.php'
paginate='1'
limit='3'
>
<div class="post">
<!-- Post Title -->
<h3 class="title"><a href="<cms:show k_page_link />"><cms:show k_page_title /></a></h3>
<!-- Post Data -->
<cms:if k_page_foldertitle >
<cms:set my_category=k_page_foldertitle />
<cms:else />
<cms:set my_category='Uncategorised' />
</cms:if>
<p class="sub"><a href="#"><cms:date k_page_date format='m-d-Y'/></p>
<div class="hr dotted clearfix"> </div>
<!-- Post Image -->
<img class="thumb" alt="" src="<cms:show blog_image />" />
<!-- Post Content -->
<cms:excerptHTML count='75' ignore='img'><cms:show blog_content /></cms:excerptHTML>
<!-- Read More Button -->
<p class="clearfix"><a href="<cms:show k_page_link />" class="button right"> Read More...</a></p>
</div>
<div class="hr clearfix"> </div>
<cms:if k_paginated_bottom >
<!-- Blog Navigation -->
<p class="clearfix">
<cms:if k_paginate_link_next >
<a href="<cms:show k_paginate_link_next />" class="button float"><< Previous Posts</a>
</cms:if>
<cms:if k_paginate_link_prev >
<a href="<cms:show k_paginate_link_prev />" class="button float right">Newer Posts >></a>
</cms:if>
</p>
</cms:if>
</cms:pages >
</code>
Be returning this:

When I hover over the template in the cms admin panel the path for the template is 'news/blog.php'

Thanks for any help you can give. This is my first foray into CouchCMS.
<code>
<cms:pages masterpage='news/blog.php'
paginate='1'
limit='3'
>
<div class="post">
<!-- Post Title -->
<h3 class="title"><a href="<cms:show k_page_link />"><cms:show k_page_title /></a></h3>
<!-- Post Data -->
<cms:if k_page_foldertitle >
<cms:set my_category=k_page_foldertitle />
<cms:else />
<cms:set my_category='Uncategorised' />
</cms:if>
<p class="sub"><a href="#"><cms:date k_page_date format='m-d-Y'/></p>
<div class="hr dotted clearfix"> </div>
<!-- Post Image -->
<img class="thumb" alt="" src="<cms:show blog_image />" />
<!-- Post Content -->
<cms:excerptHTML count='75' ignore='img'><cms:show blog_content /></cms:excerptHTML>
<!-- Read More Button -->
<p class="clearfix"><a href="<cms:show k_page_link />" class="button right"> Read More...</a></p>
</div>
<div class="hr clearfix"> </div>
<cms:if k_paginated_bottom >
<!-- Blog Navigation -->
<p class="clearfix">
<cms:if k_paginate_link_next >
<a href="<cms:show k_paginate_link_next />" class="button float"><< Previous Posts</a>
</cms:if>
<cms:if k_paginate_link_prev >
<a href="<cms:show k_paginate_link_prev />" class="button float right">Newer Posts >></a>
</cms:if>
</p>
</cms:if>
</cms:pages >
</code>
Be returning this:

When I hover over the template in the cms admin panel the path for the template is 'news/blog.php'

Thanks for any help you can give. This is my first foray into CouchCMS.