.. 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:
- hermes/post_list.html
- hermes/post_detail.html
- hermes/random_post_list.html
TODO
- Create Sphinx Documentation
- Support tagging
- Annotations ala Medium?