Skip to content

emilian/django-hermes

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

72 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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?

About

A light-weight blogging app for Django.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%