Hi - this is a strange one. I have a page that looks like this:
{exp:channel:entries disable="categories|category_fields|member_data|pagination|trackbacks"}
{html_header}
<body class="team">
{page_header}
<div class="wrap">
{embed="content/list_team"}
{page_body}
{footer}
</div>
{html_footer}
{/exp:channel:entries}This is all kosher. On line 6 is an embed to my team list, which looks like this:
{exp:channel:entries channel="team" disable="categories|category_fields|member_data|pagination|trackbacks" dynamic="off"}
{if count == "1"}<ul class="list list_panel list_team">{/if}
<li>
<h2>{title}</h2>
<p></li><br />
{if count == total_results}</ul>{/if}<br />
{/exp:channel:entries}It renders nothing on screen, but if I add something before the entries pair it works OK. So this will work:
x
{exp:channel:entries channel="team" disable="categories|category_fields|member_data|pagination|trackbacks" dynamic="off"}
{if count == "1"}<ul class="list list_panel list_team">{/if}
<li>
<h2>{title}</h2>
<p></li><br />
{if count == total_results}</ul>{/if}<br />
{/exp:channel:entries}Any idea what this might be?