[% PROCESS 'html-incblocks.txt' %]
[% thepath=path(token) %]
[% INCLUDE htmlstart title=thepath printpath=1 %]
[% xmlnorm(nodeParam(token,'comment')) %]
[% INCLUDE legend %]
[%#  ###########    Recursively print the children   ################ %]
[% BLOCK recursiveChildren;
     FOREACH child = sortTokens(children(token));
       hidden = 0;
       IF nodeParam(child,'hidden') == 'yes';
         hidden = 1;
       END;
       IF isAlias(child);
         thisIsAlias = 1;
         urlTitle = 'Symbolic link to ' _ path(isAlias(child));
       ELSE;
         urlTitle = nodeParam(child,'comment',1);
       END;
       IF not hidden or variables.SHOWHIDDEN; %]
  
    [% thisIsAlias ? '':'';
       hidden ? '':'' %]
    [% nodeName(child) %]
    [% hidden ? '':'';  thisIsAlias ? '':''; %]
  
  [% INCLUDE recursiveChildren token=child %]
 
    [% END;
     END;
  END %]
Directories you can jump to:
[% INCLUDE recursiveChildren token=token %]
[% INCLUDE shortcut url=url(token) text="Default view"
                     title="Restore default subtree view";
   INCLUDE overviewShortcuts
%]
[% INCLUDE bottomline %]
[% INCLUDE htmlend %]