Using Your Own Templates

Create a sensible directory for your templates. Inside your project directory is a good place:

<project_name>/templates

Put your 'base template' in here. You can copy the existing one from

<project-name>/cms/templates/cms/base.html

and customise that.

Edit your project's cms_settings.py file:

DEFAULT_TEMPLATE = '/path/to/project.html'

And the settings.py file:

TEMPLATE_DIRS = (
	'/absolute/path/to/<project-name>/templates',
)