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', ... )
If you want to create your blog templates in a specific app directory (other than hermes), make sure that that app comes before hermes in your INSTALLED_APPS. Otherwise, Django will render the templates that are in the hermes app itself and not yours.
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?