Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Djangoblog | 5,223 | 20 days ago | 16 | mit | Python | |||||
🍺基于Django的博客系统 | ||||||||||
Mezzanine | 4,520 | 5 months ago | 52 | bsd-2-clause | Python | |||||
CMS framework for Django | ||||||||||
Django Blog Zinnia | 2,063 | 163 | 1 | 4 months ago | 29 | March 10, 2018 | 38 | bsd-3-clause | Python | |
Simple yet powerful and really extendable application for managing a blog within your Django Web site. | ||||||||||
Django Basic Apps | 1,297 | 9 years ago | 1 | December 15, 2021 | 31 | other | Python | |||
Simple prebuilt applications. | ||||||||||
Awesome Django Cn | 959 | 3 years ago | 1 | |||||||
Django 优秀资源大全。 | ||||||||||
Izone | 948 | 4 days ago | 3 | mit | Python | |||||
django+bootstrap4 个人博客 | ||||||||||
Hellodjango Blog Tutorial | 909 | 2 years ago | 11 | gpl-3.0 | Python | |||||
免费带你学 django 全栈!基于 django 2.2 的个人博客,初学者绝对不能错过的 django 教程!。◕ᴗ◕。 | ||||||||||
Puput | 530 | 21 | 2 | 3 months ago | 28 | November 09, 2021 | 17 | mit | Python | |
A Django blog app implemented in Wagtail | ||||||||||
Django Mingus | 511 | 3 years ago | 5 | other | JavaScript | |||||
a Django blog engine leveraging reusable apps for all its features. | ||||||||||
Pinax Blog | 438 | 20 | 2 years ago | 49 | July 27, 2020 | 17 | mit | Python | ||
a blog app for Django |
This app in not maintained anymore.
Checkout the application live in use at http://agiliq.com/blog
cd django-blogango/example/
pip install -r ../requirements.txt
python manage.py syncdb --migrate
python manage.py runserver
Create a Blog instance at /admin/blogango/blog/add/
. The Blog instance is required for storing blog wide settings, like, number of entries to show per page, title for the blog, tag line for the blog etc.
With Blog instance created, you will be able to access /blog/
. At this point, no blog entries exist. Create a blog entry at /admin/blogango/blogentry/add/
.
With a blog entry created, you would be able to see the entry at /blog/
.
Install the requirements.
Include blogango
, pingback
, taggit
, django.contrib.sitemaps
, django_xmlrpc
and google_analytics
in settings.INSTALLED_APPS
.
Include blog urls in urls.py
url(r'^blog/', include('blogango.urls')),
If the comments have to verified through AKISMET, set settings.AKISMET_API_KEY
.
Enable django admin, if not already enabled.
python manage.py syncdb
Create blog at /admin/blogango/blog/add/
.
Check your blog at /blog/
.