I want to include on all of my templates a news feed that displays the 3 most recent news items.
I then want the user to click on *read more* to link through to the full story.
What I have on this include is:
<h1>latest news</h1>
{exp:weblog:entries weblog="news" limit="3"}
<h2>{entry_date format="%d %M, %Y"}</h2>
<p> {title}<br />
{if allow_comments} <br />
<a href="http://{url_title_path=">read more…</a><br />
{/if}</p>
<p> <br />
{/exp:weblog:entries}I then have:
{embed="tutorial/news_snippet"}on my template.
unfortunately, this doesn’t work.
any ideas what’s wrong?
Cheers,
S