Skip to content

selectnull/djangocms-blogit

 
 

Repository files navigation

Blogit

Build Status Codecov PyPI version

A simple blog application for djangoCMS.


Requirements

Installation

Install using pip:

pip install djangocms-blogit

You should follow django-cms & django-filer installation guide first, and then add the following to your settings:

INSTALLED_APPS = [
    ...
    'mptt',
    'parler',
    'blogit',
]

Urls

There are two ways to configure the urls. First would be to add to your urls.py:

urlpatterns = [
    url(r'^blog/', include('blogit.urls')),
    ...
]

The second option is to use django-cms apphooks. Blogit comes with a couple of those for different application parts. BlogitApphook is the main one, and one that should always be attached to a page (if the urls are not already added). Then there are other optional apphooks for category, tags & feeds. If you want to keep it simple, and not have to set every application part individually. You can add to your settings:

BLOGIT_SINGLE_APPHOOK = True

This will load all the neccesary urls under the BlogitApphook.

Documentation

You can read full documentation on ReadTheDocs.

About

Simple django-cms blog app

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 94.8%
  • HTML 2.5%
  • CSS 1.4%
  • Other 1.3%