Full page slider plugin for Django CMS
djangocms-fullslider uses Vegas Background Slider(MIT License) inside.
- Install through pip:
pip install djangocms-fullslider
-
Add
djangocms_fullslider
to yourINSTALLED_APPS
setting -
Enjoy Fullpage Slider in placeholder
Plugin settings description could be found at Vegas settings documentation
You can declare FULLSLIDER
variable in your django settings with following optional fields:
-
JS_URL
- specify URL to custom Vegas JS file. By default value isSTATIC_URL + 'djangocms_fullslider/js/vegas.min.js'
-
CSS_URL
- specify URL to custom Vegas CSS file. By default value isSTATIC_URL + 'djangocms_fullslider/css/vegas.min.css'
So, your final config could looks like:
FULLSLIDER = {
"JS_URL": "<URL TO YOUR CUSTOM VEGAS JS>",
"CSS_URL": "<URL TO YOUR CUSTOM VEGAS CSS>"
}
Ensure that all python sources contain license notice:
./development/copyright-update
Building distribution package:
./build.sh clean build
Uploading package to PyPi:
./build.sh publish