Scenario:
"I have 10 items on my main page and I would like to show the latest one in detail (e.g. full text) and only the titles of the rest."
Solution:
Create 2 templates, one called default/indexDetail which displays the item in full and another called default/indexBrief which displays the title. Then use the following code instead of <%blog(default/index,10)%>:
<%blog(default/indexDetail,1)%> <%blog(default/indexBrief,9(1))%>
Original forum thread:
http://forum.nucleuscms.org/viewtopic.php?t=10960