Skip to main content

A Simple Blogging App that enables you to create content and content types from frontend itself.

Project description

A Simple Blogging App that enables you to:

  • Create/Decide Layout of the post.

  • Arrange them in hierarchy.

  • Write taggeble blog articles.

Apart from these stand-alone features this app can be used as Django-CMS apps also providing various plugins e.g.:

  • Latest Entries Plugin (with Various view options).

  • Section Views Plugin.

  • Contact Page Plugin.

  • Filter Entries based of Tags.

Requirements

Installation

Use pip for installing the app:

pip install pi-blogging –pre

or download zip file from github here

after installation, add blogging to your installed apps and also make sure that requirements are also installed -

INSTALLED_APPS = (
‘reversion’,
‘crispy_forms’,
‘blogging’,
‘taggit’,
‘ckeditor’,
‘django_select2’,
)

Also add blogging urls in your projects urls.py -

urlpatterns = i18n_patterns(‘’,
url(r’^’, include(‘blogging.urls’,namespace=’blogging’)),
)

after this just run python manage.py syncdb for creation of database tables.

Usage

Basic Usage of the Blogging App is creating blog entries and navigate among them. App has three core entities :

  • Content Type.

  • Blog Parent.

  • Blog Entries.

The documentation may be found at Read The Docs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pi-blogging-0.1.0b1.tar.gz (38.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page