Metadata-Version: 1.1
Name: pelican-category-template
Version: v0.0.2
Summary: A pelican plugin to apply a template based on the category of the content.
Home-page: https://github.com/hrbonz/pelican-category_template
Author: Stefan "hr" Berder
Author-email: hr@bonz.org
License: BSD 2-Clause
Description: ===========================
        Pelican - category template
        ===========================
        
        .. image:: https://travis-ci.org/hrbonz/pelican-category_template.png?branch=master
           :target: https://travis-ci.org/hrbonz/pelican-category_template
        
        Load a template for any content (article, page) based on its category.  For
        example, for an article, if a template named ``article-<category>.html`` exists
        in the theme or Jinja2 path, it will be used. If not, then the default template
        is used.
        
        
        Install
        -------
        
        Use pip to install the plugin:
        
        .. code:: sh
        
            $ pip install pelican-category_template
        
        
        Usage
        -----
        
        To use the plugin, add it to the ``PLUGINS`` list in your configuration file.
        Put it in ``pelicanconf.py`` by default:
        
        .. code:: python
        
            PLUGINS = [
                # ...
                'categorytpl'',
            ]
        
        
        Test
        ----
        
        .. code:: sh
        
            $ python -m unittest discover
        
Platform: UNKNOWN
Classifier: Development Status :: 6 - Mature
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Topic :: Internet
