Liquid Template Variables - linklist

From Spiffy Stores Knowledge Base

Revision as of 11:46, 6 November 2013 by Admin (talk | contribs)

The Liquid template variable linklist has the following attributes:

linklist.id

Returns the unique internal number of the linklist.

This is normally only for internal usage.

linklist.handle

This is the linklist handle.

linklist.title

Returns the title of this linklist.

linklist.links

Returns a collection of this linklist's links.

linklist.links_count

Returns the number of child links.

linklist.menu

Returns the HTML code for a fully generated tree-structured menu, using drop-down menus.

<div id="navigation">
  {{ linklists.main-menu.menu }}
</div>

This example includes all the code needed to implement a drop down menu.

The class active is added to the link automatically whenever a link is active.

linklist.menu_simple

Returns the HTML code for a simple tree-structured menu, using nested unordered lists.

<div id="side-navigation">
  {{ linklists.side-menu.menu_simple }}
</div>

The class active is added to the link automatically whenever a link is active.