List All Spaces Snippet
List All Spaces Snippet
List all spaces in the current wikiCode
Syntax 2.0
{{velocity}}
#foreach($space in $xwiki.spaces)
* [[$space>>${space}.WebHome]]
#end
{{/velocity}}Syntax 1.0
#set($spaces = $xwiki.spaces)
#foreach($space in $spaces)
* [$space>${space}.WebHome]
#end