I have a weblog with a short name of “conference-updates”. I’m using Structure for normal pages, using the “conference-pages” weblog.
On the Home page using the index template, I’m trying to call a snapshot of the Updates section with the 5 latest entries using:
<div id="updates">
<h2>{exp:weblog:info weblog="conference-updates"}{blog_title}{/exp:weblog:info}</h2>
<p> {exp:weblog:entries weblog="conference-updates" sort="desc" limit="5"}<br />
<br />
<h3 class="title">{title}</h3> <br />
{date_heading}<br />
<h4 class="date">{entry_date format=' %l, %F %d, %Y '}</h4><br />
{/date_heading}<br />
{story}<br />
{/exp:weblog:entries}<br />
</div>Only the <h2> is being rendered, not sure what I’m doing wrong? Admittedly this is my first time writing a template.