Metadata-Version: 2.0
Name: wagtailcommonblocks
Version: 0.0.2
Summary: Common StreamField blocks for Wagtail
Home-page: https://github.com/springload/wagtailcommonblocks/
Author: Jordi J. Tablada
Author-email: jordi@springload.co.nz
License: BSD License
Platform: UNKNOWN
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
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content

Wagtail Commonblocks
====================

# Quickstart

Assuming you have a [Wagtail](https://wagtail.io/) project up and running:

``` $ pip install wagtailcommonblocks```

Add commonblocks to your `settings.py` in the INSTALLED_APPS section, before the core wagtail packages:

```
...
    'commonblocks',
    'wagtail.contrib.wagtailsitemaps',
...
```
# Available blocks

* CommonPageChooserBlock
* SimpleRichTextBlock
* CommonImageBlock
* CommonQuoteBlock
* CommonHeadingBlock
* CommonVideoBlock
* CommonInternalLink
* CommonExternalLink
* CommonLinksBlock

You can override the headings of the `CommonHeadingBlock` block:

```
...
COMMONBLOCKS_HEADING = (
    ('h1', 'h1'),
    ('h2', 'h2'),
)
```

# Version history

* [0.0.2](https://github.com/springload/wagtailblocks/tree/0.0.2) compatible with [Wagtail 1.2](https://github.com/torchbox/wagtail/tree/v1.2)
* [0.0.1](https://github.com/springload/wagtailblocks/tree/0.0.1) compatible with [Wagtail 1.1](https://github.com/torchbox/wagtail/tree/v1.1)



