Blog is a reusable blog app for Django
Detailed documentation is in the "docs" directory.
Add "reusable_blog" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'reusable_blog', )
Include the polls URLconf in your project urls.py like this:
url(r'^blog/', include('reusable_blog.urls')),
Run python manage.py migrate to create the blog models.
- Add the blog css::
<link rel="stylesheet" href="{% static "css/blog.css" %}">
Visit http://127.0.0.1:8000/blog/ to view the blogs you create.