Logicify / djangocms-fullslider

FullSlider plugin for Django CMS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

djangocms-fullslider

Full page slider plugin for Django CMS

djangocms-fullslider uses Vegas Background Slider(MIT License) inside.

How to use pugin

  1. Install through pip:
pip install djangocms-fullslider
  1. Add djangocms_fullslider to your INSTALLED_APPS setting

  2. Enjoy Fullpage Slider in placeholder

Plugin settings description could be found at Vegas settings documentation

Customize css and js locations

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 is STATIC_URL + 'djangocms_fullslider/js/vegas.min.js'

  • CSS_URL - specify URL to custom Vegas CSS file. By default value is STATIC_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>"
}

Development procedures

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

About

FullSlider plugin for Django CMS

License:MIT License


Languages

Language:Python 90.0%Language:HTML 5.1%Language:Shell 4.9%