Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Table of Content Zonecode
## @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)