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

quintagroup.theme.whiteblack can be installed in any of the following ways. 

Installation via diazo panel
============================

* Download zip file at http://plone.org/products/whiteblack-plone-skin/releases/6.0.2/whiteblack.zip
* Import the theme at the 'Diazo theme' control panel

Installation via buildout
=========================

In the buildout.cfg file of your buildout: 

* Add ``quintagroup.theme.whiteblack`` to the list of eggs to install::

    [buildout]
    ...
    eggs =
        ...
        quintagroup.theme.whiteblack

* Re-run buildout, e.g. with::

    $ ./bin/buildout
    
* Restart the Zope server, e.g with the following command in the terminal::

   $ ./bin/instance restart

* On your Plone site go to Site Setup -> Add-ons and activate ``WhiteBlack Plone Theme``.


Installation: development mode
==============================

If you want to customize WhiteBlack theme please use the following installation instructions: 

* download ``quintagroup.theme.whiteblack-version.zip`` archive from http://pypi.python.org/pypi/quintagroup.theme.whiteblack
* extract theme archive to get ``quintagroup.theme.whiteblack-version`` folder. Remove version from 
  folder name to have ``quintagroup.theme.whiteblack`` folder
* put ``quintagroup.theme.whiteblack`` folder into ``src`` directory of your buildout
* in buildout.cfg file of your buildout add ``quintagroup.theme.whiteblack`` to the list of eggs you are developing and to the list of eggs to install::

       [buildout]
       ...
       develop = src/quintagroup.theme.whiteblack
       ...
       eggs =
           ...
           quintagroup.theme.whiteblack
   
* Re-run buildout::

    $ ./bin/buildout

* Start instance in development mode::

    $ ./bin/instance fg

* Install ``WhiteBlack Plone Theme`` in Plone (Site Setup -> Add-ons).

Now you can customize WhiteBlack Theme by modifying ``quintagroup.theme.whiteblack`` package in ``src`` directory 
of your buildout.
