Metadata-Version: 1.1
Name: aldryn-style
Version: 0.3.0
Summary: Style Plugin for django CMS
Home-page: https://github.com/divio/aldryn-style
Author: Divio AG
Author-email: info@divio.ch
License: LICENSE.txt
Description: ============
        Aldryn Style
        ============
        
        Aldryn Style provides a plugin that wraps other plugins in CSS styling, by placing a class name on a containing 
        element.
        
        ------------
        Installation
        ------------
        
        This plugin requires `django CMS` 2.4 or higher to be properly installed.
        
        * Within your ``virtualenv`` run ``pip install aldryn-style``
        * Add ``'aldryn_style'`` to your ``INSTALLED_APPS`` setting.
        * Run ``manage.py migrate aldryn_style``.
        
        -----
        Usage
        -----
        
        You can define styles in your settings.py::
        
            _ = lambda s: s
            ALDRYN_STYLE_CLASS_NAMES = (
                ('info', _('info')),
                ('new', _('new')),
                ('hint', _('hint')),
            )
        
        After that you can place other plugins inside this style plugin.
        It will create a div with a class that was prior selected around this plugin.
        
        ------------
        Translations
        ------------
        
        If you want to help translate the plugin please do it on transifex:
        
        https://www.transifex.com/projects/p/django-cms/resource/aldryn-style/
        
Platform: OS Independent
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development
