Metadata-Version: 2.0
Name: djangocms-grid
Version: 1.1
Summary: Grid Plugin for django CMS
Home-page: https://github.com/divio/djangocms-grid
Author: Divio AG
Author-email: info@divio.ch
License: LICENSE.txt
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: Topic :: Communications
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Message Boards
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7

djangocms-grid
==============

A Multi Column Plugin for django CMS, that uses a common grid system.


Installation
------------

This plugin requires `django CMS` 2.4 or higher to be properly installed.

* In your projects `virtualenv`_, run ``pip install djangocms-grid``.
* Add ``'djangocms_grid'`` to your ``INSTALLED_APPS`` setting.
* Run ``manage.py migrate djangocms_grid``.


Configure your grid
-------------------

You can configure your grid using three numbers: total width of grid, number of
columns, and width of the gutter in between each column::

    DJANGOCMS_GRID_CONFIG = {
        'COLUMNS': 24,
        'TOTAL_WIDTH': 960,
        'GUTTER': 20,
    }

The above example is the default, which, incidentally, matches the widely used 960 grid.

Usage
-----

.. _virtualenv: http://www.virtualenv.org/en/latest/


