A light-weight blogging app for Django.
pip install django-hermes
In your django settings file, add hermes to your INSTALLED_APPS:
INSTALLED_APPS = (
...
'hermes',
...
)
Include hermes.urls in your ROOT_URLCONF:
url(r'^blog/', include('hermes.urls')),
Hermes expects three templates:
- hermes/post_list.html
- hermes/post_detail.html
- hermes/random_post_list.html
- Create Sphinx Documentation
- Support tagging
- Annotations ala Medium?