# -*- coding: utf-8 -*- # this file is released under public domain and you can use without limitations # ---------------------------------------------------------------------------------------------------------------------- # this is the main application menu add/remove items as required # ---------------------------------------------------------------------------------------------------------------------- response.title = request.application response.subtitle = 'subtitle customize me!' response.meta.author = 'Author' response.meta.description = 'describe your app' response.meta.keywords = 'keyword' response.menu = [ [ 'Home', False, URL('home') ], ['List', False, URL('list') ], ['Search', False, URL('search') ], ['Request', False, URL('submit') ] ]