基本信息
源码名称:django简单博客系统
源码大小:3.13M
文件格式:.zip
开发语言:Python
更新时间:2023-07-03
   友情提示:(无需注册或充值,赞助后即可获取资源下载链接)

     嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300

本次赞助数额为: 10 元 
   源码介绍

django简单博客系统


在这个快节奏的数字时代,博客已经成为人们分享观点、交流经验和表达创造力的重要平台。为了满足这一需求,我搭建了这个基于Django的博客系统,为用户提供了一个简单而强大的工具来创建、管理和参与博客社区。



django_blog
├── README_IMG
│   ├── article_detail.png
│   ├── index.png
│   └── profile.png
├── blog
│   ├── __pycache__
│   │   ├── __init__.cpython-37.pyc
│   │   ├── admin.cpython-37.pyc
│   │   ├── apps.cpython-37.pyc
│   │   ├── middlewares.cpython-37.pyc
│   │   ├── models.cpython-37.pyc
│   │   ├── urls.cpython-37.pyc
│   │   └── views.cpython-37.pyc
│   ├── migrations
│   │   ├── __pycache__
│   │   │   ├── 0001_initial.cpython-37.pyc
│   │   │   └── __init__.cpython-37.pyc
│   │   ├── 0001_initial.py
│   │   └── __init__.py
│   ├── static
│   │   ├── blog
│   │   │   └── style.css
│   │   ├── js
│   │   │   └── naranja.js
│   │   └── md_css
│   │       ├── bootstrap-grid.min.css
│   │       ├── demo.css
│   │       ├── emacs.css
│   │       ├── material.css
│   │       ├── monokai.css
│   │       ├── naranja.min.css
│   │       ├── solarized-dark.css
│   │       ├── solarized-light.css
│   │       └── vim.css
│   ├── templates
│   │   └── blog
│   │       ├── article_detail.html
│   │       ├── base.html
│   │       ├── confirm.html
│   │       ├── create_article.html
│   │       ├── edit_profile.html
│   │       ├── footer.html
│   │       ├── header.html
│   │       ├── hint.html
│   │       ├── index.html
│   │       ├── login.html
│   │       ├── profile.html
│   │       ├── qft.html
│   │       ├── register.html
│   │       ├── register2.html
│   │       ├── reset_password.html
│   │       └── update_article.html
│   ├── __init__.py
│   ├── admin.py
│   ├── apps.py
│   ├── middlewares.py
│   ├── models.py
│   ├── tests.py
│   ├── urls.py
│   └── views.py
├── proj
│   ├── __pycache__
│   │   ├── __init__.cpython-37.pyc
│   │   ├── project_config.cpython-37.pyc
│   │   ├── settings.cpython-37.pyc
│   │   ├── urls.cpython-37.pyc
│   │   └── wsgi.cpython-37.pyc
│   ├── __init__.py
│   ├── asgi.py
│   ├── project_config.py
│   ├── settings.py
│   ├── urls.py
│   └── wsgi.py
├── LICENSE
├── README.md
├── manage.py
├── print.txt
└── requirements.txt