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 and tag-types in your settings.py:
# define this lambda if it isn't already defined in your settings...
_ = lambda s: s
ALDRYN_STYLE_CLASS_NAMES = (
('info', _('info')),
('new', _('new')),
('hint', _('hint')),
)
ALDRYN_STYLE_ALLOWED_TAGS = [
'div', 'p', 'span', 'article', 'section', 'header', 'footer',
]
By default, if ALDRYN_STYLE_ALLOWED_TAGS is not supplied, or contains an empty list, then it will default to the following list for backwards compatibility with previous versions:
ALDRYN_STYLE_ALLOWED_TAGS = [
'div', 'article', 'section', 'p', 'span',
'h1', 'h2', 'h3', 'h4', 'h5', 'h6',
'header', 'footer',
]
NOTICE:
All tags included in this list should be "paired tags" that require a closing tag. It does not make sense to attempt to use 'button', 'input', 'img', or other self-closing tag in this setting. Also, the developer is advised to choose the tag-types wisely to avoid HTML validation issues and/or unintentional security vulnerabilities. For example, the 'script' tag should never be allowed in ``ALDRYN_STYLE_ALLOWED_TAGS`` (though, we do not prevent this). If you have an application where you find yourself wishing to do this, please see djangocms-snippet or aldryn-snippet as an alternative, but note these projects also come with appropriate security warnings.
After that you can place any number of other plugins inside this style plugin. It will create a div (or other tag-type) with a class that was prior selected around the contained plugins.
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/
Release files for aldryn-style 1.1.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| aldryn-style-1.1.4.tar.gz | 19.9 kB | Details |
Release files / aldryn-style-1.1.4.tar.gz
| Download URL | aldryn-style-1.1.4.tar.gz |
|---|---|
| Size | 19.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
cdf4bccf5be924ee59bcd481a1ee59392f8a3a39b98c1d6861bc9da517c31629
|
|
BLAKE2b-256 checksum How to use checksums |
1c739010c113b9068577d4085b55d8e1cf710d16683bef69a58d02f294a92463
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |