Switch to side-by-side view
--- a/ForgeWiki/forgewiki/wiki_main.py +++ b/ForgeWiki/forgewiki/wiki_main.py @@ -115,6 +115,14 @@ return self.config.options['show_right_bar'] else: return True + + def main_menu(self): + '''Apps should provide their entries to be added to the main nav + :return: a list of :class:`SitemapEntries <allura.app.SitemapEntry>` + ''' + return [ SitemapEntry( + self.config.options.mount_label.title(), + '.')] @property @h.exceptionless([], log)