Django blog – complete customization and ready to use with one click installer
django-blog-it
Simple blog package developed with Django.
Features:
- Dynamic blog articles
- Blog pages
- Contact us page (configurable)
- google analytics
- SEO compliant
Installation
-
Install django-blog-it using the following command:
pip install django-blog-it (or) git clone git://github.com/micropyramid/django-blog-it.git cd django-blog-it python setup.py install
-
Add app name in settings.py:
INSTALLED_APPS = [ '..................', 'simple_pagination', 'django_blog_it.django_blog_it', '..................' ]
-
Include the django_blog_it urls in your urls.py:
from django.conf.urls import