blob: fe217c09be0be347094633fa34b111828faa21fc [file] [log] [blame]
layout 'layout/main.tpl', true,
projects: projects,
bodyContents: contents {
div(class:"sitemap"){
section(class:"wrap"){
ul {
published_content.sort({ e -> e.title }).each {content ->
li {
a (href:"${config.site_contextPath}${content.uri}") {
yield content.title
}
}
newLine()
}
}
}
}
}