Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 12 Next »

## @noparams
#macro(showChildren $parent)
    #set ($children = $content.getChildren($parent.id))
    #if ($children.size() > 0)
        <ul>
        #foreach ($child in $children)
            <li><a href="$child.getUrlPath()">$child.title</a>
            #if ($child.childTypes.contains("page"))
                #showChildren($child)
            #end
            </li>
        #end
        </ul>
    #end
#end

#showChildren($content)
  • No labels