pip install mezzanine
mezzanine-project mysite
cd mysite
python manage.py runserver
python manage.py createsuperuser
python manage.py page "About" --slug=about
python manage.py blog_post "Hello World"
python
from mezzanine.pages.models import Page
class CustomPage(Page):
template = "custom_template.html"