Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Django blog APPS

Are there any plug and play blog APPS for django,if so please point me to the sources for it.

I am actually looking something like word press which is of cousre difficult to integrate with django.

Thanks..

like image 798
Rajeev Avatar asked Jun 16 '11 10:06

Rajeev


People also ask

Is Django good for blogging?

Django is capable of making more advanced stuff but making a blog is an excellent first step to get a good grasp over the framework.

What is blog application Django?

The objective of the project is to implement a blog web-based application where the users will post useful and informative blogs. Basic knowledge of the front-end part and a good knowledge of Django is required to complete and understand the project.

How to create an app in Django?

The first step is to set-up a new Django project for the application. Hence in the terminal run: Now , go inside the project, and run the following line to create a Django app: 2. Including the App URLs to the Project URLs file Create a new urls.py file in the App and then link it to the project urls.py file.

What is a blog project in Django?

Django Blog Application Project: The objective of the project is to implement a blog web-based application where the users will post useful and informative blogs. Basic knowledge of the front-end part and a good knowledge of Django is required to complete and understand the project. Django Blog Project Prerequisites

What can you do with Django?

This post is just the tip of the iceberg considering the number of things you could do with Django. We have built a basic blog application from scratch! Using the Django admin we can create, edit, or delete the content and we used Django's class-based views, and at the end, we made beautiful templates to render it out.

What is a Django view and how to use it?

A Django view is just a Python function that receives a web request and returns a web response. We’re going to use class-based views then map URLs for each view and create an HTML templated for the data returned from the views. Open the blog/views.py file and start coding.


2 Answers

We looked into this a few months ago for our site and found that Mezzanine and Zinnia were the two best options available, and both are regularly-maintained.

Mezzanine gives you a slicker interface than Zinnia and has disqus comment integration, and has recently added Akismet integration for spam filtering on comments.

like image 65
Aaron Beals Avatar answered Oct 22 '22 13:10

Aaron Beals


django-blog-it - complete customization and ready to use with one click installer. You can try it by hosting on your own or deploy to Heroku with a button click.

Features:

  • Dynamic blog articles
  • Blog pages
  • Contact us page (configurable)
  • google analytics
  • List item
  • SEO compliant
like image 39
MicroPyramid Avatar answered Oct 22 '22 12:10

MicroPyramid