Might not be tricky for most but what I’m trying to do is if I have 5 articles on the homepage, I want to display the NEWEST blog article with an image, title, excerpt, and read article link so i might have something like this:
{exp:channel:entries channel="blog_articles" limit="1" disable="pagination"}
<h3>{title}</h3>
<p><div class="imgborder"><br />
{article_image}<br />
</div><br />
{article_excerpt}<br />
<a href="http://{title_permalink=" class="read_story">Read Article →</a><br />
{/exp:channel:entries}
Now what do I add to the code below so it will display articles 2-5:
<ul>
{exp:channel:entries channel="blog_articles" limit="4" disable="pagination"}
<li><a href="{title_permalink=">{title}</li>
{/exp:channel:entries}
</ul>the 2nd block of code might be done incorrectly since I didnt have time to test it, just tryin to figure out how to display article 1 with an img/excerpt and then 2-5 in the unordered list