I have a navigation where the first entry will always be the latest entry from a channel and then further down the navigation i want to list all other entries. Basically I want to exclude the first entry returned in a channel entry list. How can i do this..?
So far I have:
<ul id=“nav” role=“navigation”>
{exp:channel:entries channel=“collections” limit=“1” disable=“categories|category-fields|member-data|pagination”}
<li class=“top-level”>{title}</li>
{/exp:channel:entries}
<li class=“top-level”>WEDDING COLLECTION</li>
<li class=“top-level”>ACCESSORIES</li>
<li class=“top-level item-with-ul”>COLLECTION ARCHIVE
<ul class=“sub-menu”>
{exp:channel:entries channel=“collections” limit=“10” disable=“categories|category-fields|member-data|pagination”}
<li>’{entry_date format=”%y”} S/S</li>
{/exp:channel:entries}
</ul>
</li>
<li class=“top-level”>CONTACT US</li>
<li class=“top-level”>AV STORY</li>
<li class=“top-level”>SHOP</li>
</ul>
