Skip to content

Latest commit

 

History

History
executable file
·
54 lines (34 loc) · 1002 Bytes

README.rst

File metadata and controls

executable file
·
54 lines (34 loc) · 1002 Bytes

Overview

Starter business theme for Mezzanine CMS. Demo: http://demo.skyfalk.ru

Features:

  • editable homepage
  • sitewide content

Requirements:

  • mezzanine >= 3.1

Quick start

  1. Add "business_theme" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        'business_theme',
        ...
    )
    
  2. Create database tables:

    python manage.py syncdb
    
  3. Add "SitewideContent" to your ADMIN_MENU_ORDER setting like this:

    ADMIN_MENU_ORDER = (
        ("Content", ("pages.Page", "blog.BlogPost",
        "generic.ThreadedComment", "business_theme.SitewideContent",
        ("Media Library", "fb_browse"),)),
    
  4. Activate the editable home URLconf in your project urls.py:

    url("^$", "mezzanine.pages.views.page", {"slug": "/"}, name="home"),
    
  5. Visit /admin/ to add the HomePage content with slug "/".

  6. Visit the admin menu Content -> Sitewide Content to edit sitewide blocks.

ToDo

  • slider
  • portfolio