So I am getting this error on a page http://dropdeadmedia.com/med/blog.php
below is the code and clearly the if tag is there, whats going on ?
<?php include('couch/snippets/header.php'); ?>
<cms:template title='blog' clonable='1'>
<cms:editable name='blog_content' type='richtext' />
<cms:editable name='blog_image'
crop='1'
width='850'
height='350'
type='image' />
</cms:template>
<cms:if k_is_page >
<div class="row medium-8 large-7 columns">
<div class="blog-post">
<h3><cms:show k_page_title /></h3>
<img class="thumbnail" src="<cms:show blog_image />">
<cms:show blog_content />
</div>
</div>
<cms:else />
<cms:embed 'blog_list.php'>
</cms:if>
<?php include('couch/snippets/footer.php'); ?>
below is the code and clearly the if tag is there, whats going on ?
<?php include('couch/snippets/header.php'); ?>
<cms:template title='blog' clonable='1'>
<cms:editable name='blog_content' type='richtext' />
<cms:editable name='blog_image'
crop='1'
width='850'
height='350'
type='image' />
</cms:template>
<cms:if k_is_page >
<div class="row medium-8 large-7 columns">
<div class="blog-post">
<h3><cms:show k_page_title /></h3>
<img class="thumbnail" src="<cms:show blog_image />">
<cms:show blog_content />
</div>
</div>
<cms:else />
<cms:embed 'blog_list.php'>
</cms:if>
<?php include('couch/snippets/footer.php'); ?>