It comes ready with everything you need. Many templates to suit your needs. Different themes to choose the one you like. You can watch them on this website!
See FeaturesWe want that you can start working right now. Therefore, we included many themes. So you don't need to search. But if neither you like. We have more than you can install later!
See ThemesYou can do much more than choosing a theme. You can customize! We have prepared options like choosing the menu or the size of the columns.
See OptionsWe have developed a system for Django to have several themes on a single website. Customize by user or domain! You can try it on this website.
Change ThemeWe don't only offer to you themes. We also give you the tools to create new themes! We have a great inheritance system to reuse other templates.
See DocsDeveloped with love for you. If you like this project, you are welcome to contribute. Share this project with your friends, family and your cat.
Go to Github$ pip install djangocms-bs3-theme# Optional: install more themes:$ pip install djangocms-bs3-theme-solidYou can also install it on Aldryn Cloud Server
... or install from source code
djangocms_bs3_theme in your INSTALLED_APPS. If you have installed themes, you must also add their apps.cms.context_processors.cms_settings in TEMPLATES->OPTIONS->context_processors. This section is in a different place depending on Django version.CMS_TEMPLATES and adds THEME_BOOTSTRAP configurations. You can see in the example on the right.Remember to try the different options available.
INSTALLED_APPS = (
...
'cms_bs3_theme',
# Optional installed theme apps:
# 'cms_bs3_theme_solid',
)
TEMPLATES = [
{
...
'OPTIONS': {
'context_processors': [
...
'cms_bs3_theme.context_processors.settings',
]
},
...
},
}
CMS_TEMPLATES = (
# ('cms_bs3_theme/page.html', 'BS3 Page'),
('cms_bs3_theme/fullwidth.html', 'BS3 Fullwidth'),
('cms_bs3_theme/sidebar_right.html', 'BS3 Sidebar Right'),
('cms_bs3_theme/sidebar_left.html', 'BS3 Sidebar Left'),
('cms_bs3_theme/feature.html', 'BS3 Feature'),
('cms_bs3_theme/landscape.html', 'BS3 Landscape'),
)
BOOTSTRAP3_THEME = 'default'
BOOTSTRAP3_MENU_TEMPLATE = 'cms_bs3_theme/menus/default.html'