Hi,
Having a very strange issue setting up a channel within a snippet to use as an event feed. Here’s the snippet:
<ul>
{exp:channel:entries channel="events" orderby="start_date" limit="5" dynamic="no"}
<li>
<a href="http://{permalink}">{title}</a>
<span>{start_date}</span>
</li>
{/exp:channel:entries}
</ul>But when the snippet renders it explodes at the href:
<ul>
<li>
< a href=
</div>I moved the snippet into the template and it worked fine… what am I missing?
BTW, had to add a space after < and before “a” to post the output. Shouldn’t everything within a “code” block render as plain-text? 😖