Difference between revisions of "Liquid Template Variables - linklist"

From Spiffy Stores Knowledge Base

Line 32: Line 32:
  
 
This example includes all the code needed to implement a drop down menu.
 
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.
  
 
== <code>linklist.menu_simple</code> ==
 
== <code>linklist.menu_simple</code> ==

Revision as of 10:16, 3 October 2013

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>