Metadata-Version: 1.0
Name: django-hermes
Version: 1.3.0
Summary: A light-weight blogging app for Django.
Home-page: https://github.com/bunchesofdonald/django-hermes
Author: Chris Pickett
Author-email: chris.pickett@gmail.com
License: MIT
Description: .. image:: https://travis-ci.org/bunchesofdonald/django-hermes.svg?branch=master
            :target: https://travis-ci.org/bunchesofdonald/django-hermes
        
        =============
        django-hermes
        =============
        
        A light-weight blogging app for Django.
        
        Installation
        ============
        
        Download
        --------
        ::
        
            pip install django-hermes
        
        Add To Installed Apps
        ---------------------
        In your django settings file, add hermes to your INSTALLED_APPS::
        
            INSTALLED_APPS = (
                ...
                'hermes',
                ...
            )
        
        Setup URLs
        ----------
        Include hermes.urls in your ROOT_URLCONF::
        
            url(r'^blog/', include('hermes.urls')),
        
        
        Create Templates
        ----------------
        Hermes expects three templates:
        
        1. hermes/post_list.html
        2. hermes/post_detail.html
        3. hermes/random_post_list.html
        
        
        TODO
        ====
        1. Create Sphinx Documentation
        2. Support tagging
        3. Annotations ala Medium?
        
        
Platform: UNKNOWN
