Metadata-Version: 2.1
Name: djangocms-htmlsitemap
Version: 0.6.1
Summary: A Django CMS plugin for building HTML sitemaps showing organized lists of CMS pages.
Home-page: https://github.com/kapt-labs/djangocms-htmlsitemap
Author: Kapt
Author-email: dev@kapt.mobi
License: BSD
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
License-File: LICENSE

=====================
djangocms-htmlsitemap
=====================

.. image:: http://img.shields.io/pypi/v/djangocms-htmlsitemap.svg?style=flat-square
    :target: https://pypi.python.org/pypi/djangocms-htmlsitemap/
    :alt: Latest Version

.. image:: http://img.shields.io/pypi/l/djangocms-htmlsitemap.svg?style=flat-square
    :target: https://pypi.python.org/pypi/djangocms-htmlsitemap/
    :alt: License

.. image:: http://img.shields.io/travis/kapt-labs/djangocms-htmlsitemap.svg?style=flat-square
    :target: http://travis-ci.org/kapt-labs/djangocms-htmlsitemap
    :alt: Build status

.. image:: http://img.shields.io/coveralls/kapt-labs/djangocms-htmlsitemap.svg?style=flat-square
    :target: https://coveralls.io/r/kapt-labs/djangocms-htmlsitemap
    :alt: Coveralls status

*A Django CMS plugin for building HTML sitemaps showing organized lists of CMS pages.*

.. contents:: :local:

Requirements
------------

Python 2.7+ or 3.3+, Django 1.7+, Django-CMS 3.1+.

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

Just run:

::

  pip install djangocms-htmlsitemap

Once installed you just need to add ``djangocms_htmlsitemap`` to ``INSTALLED_APPS`` in your project's settings module:

::

  INSTALLED_APPS = (
      # other apps
      'djangocms_htmlsitemap',
  )

Then install the models:

::

  python manage.py syncdb

If you are using Django 1.6, you should use South 1.0 in order to benefit from the migrations. This way you can use the migration command provided by South:

::

  python manage.py migrate djangocms_htmlsitemap

*Congrats! You’re in.*

Authors
-------

Kapt <dev@kapt.mobi> and contributors_

.. _contributors: https://github.com/kapt-labs/djangocms-htmlsitemap/contributors

License
-------

BSD. See ``LICENSE`` for more details.
