I'm not totally sure what you are looking for but adding static pages is pretty easy.
I usually put them in default.py so they are at the top level but you could put them anywhere. A one liner in a controller file: def about(): return dict() And whatever you want in a view file.

