Personal Blog Using Django

I am interested in creating a personal blog using Django . I used cms like Wordpress / Durpal, but I am not satisfied with its simplicity. I want something complicated or different. I'm also a Python newbie - I got inspiration from Stevelosh , but couldn't find enough resources to build such a site. Can someone put the light on my way ?;)

Also are there any similar structures like Django? It should be

  • Typically clean and beautiful

  • HTML5 / CSS3 Support

+4
source share
4 answers

You can use django or any server-side infrastructure with any client environment. There are many , but according to your criteria, I have selected several:

+2
source

You can also watch Pyramid

+1
source

Django can certainly be used to create a typographically clean and beautiful blog in HTML5 / CSS3, but it does not provide, for example, a basic blog template or CMS. If you are interested in creating a full blog (both appearance and basic features), then Django is a good choice.

You can create HTML pages yourself so that they look and behave as you wish. This is not like WordPress, which you can install and configure for the blog to work. However, there are many Django packages that you can add to your Django installation to easily create a blog.

0
source

There are many CMS (content management system) applications for Django. For example, django-cms has been supported for some time. I guess this is pretty solid. The Django CMS Apps Comparison page shows a lot of alternatives in the matrix and seems pretty recent (last updated 2 months ago).

0
source

Source: https://habr.com/ru/post/1401220/


All Articles