see also: /c/external/sites/charlesbrandt.com/python/pylons/mako.txt
the files to look at for default templates:
/c/external/sites/charlesbrandt.com/templates/instances.txt /c/external/sites/charlesbrandt.com/python/pylons/new_pylons_app.txt /c/external/sites/charlesbrandt.com/templates/pylons/public/css/style.css /c/external/sites/charlesbrandt.com/templates/pylons/controllers/main.py /c/external/sites/charlesbrandt.com/templates/pylons/templates/header.mako /c/external/sites/charlesbrandt.com/templates/pylons/templates/footer.mako /c/external/sites/charlesbrandt.com/templates/pylons/templates/site.mako /c/external/sites/charlesbrandt.com/templates/pylons/templates/main/index.mako
remove public index.html (otherwise it will be default) cd (package)/public #rm index.html bg.png pylons-logo.gif hg rm personnel/public/bg.png hg rm personnel/public/pylons-logo.gif hg rm personnel/public/index.html
#make images and css directories in public: cp -R /c/external/sites/charlesbrandt.com/templates/pylons/public/css public/ #import other default template files: cp -R /c/external/sites/charlesbrandt.com/templates/pylons/templates/* templates/ cp -R /c/external/sites/charlesbrandt.com/templates/pylons/controllers/* controllers/
#be sure to choose if you want the sqlalchemy version (model-sa) or non-sa: cp /c/external/sites/charlesbrandt.com/templates/pylons/model/* model/
update the imports in the controllers you plan to use
update lib/helpers.py to import webhelpers cp /c/external/sites/charlesbrandt.com/templates/pylons/lib/* lib/