├── app01
├── __init__.py
├── migrations
│ ├── __init__.py
│ └── 0001_initial.py
├── tests.py
├── apps.py
├── admin.py
├── models.py
├── myform.py
├── pagination.py
└── views.py
├── mysite
├── __init__.py
├── wsgi.py
├── urls.py
└── settings.py
├── db.sqlite3
├── 预览图
├── 1.png
├── 2.png
├── 3.png
├── 4.png
├── 5.png
├── 6.png
├── 7.png
└── 8.png
├── static
├── dist
│ ├── img
│ │ └── image30.png
│ ├── js
│ │ ├── login.js
│ │ ├── register.js
│ │ ├── index.js.bak
│ │ └── index.js
│ └── css
│ │ └── index.css
└── plugins
│ ├── bootstrap
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ └── glyphicons-halflings-regular.woff2
│ ├── js
│ │ ├── npm.js
│ │ └── bootstrap.min.js
│ └── css
│ │ ├── bootstrap-theme.min.css
│ │ ├── bootstrap-theme.min.css.map
│ │ └── bootstrap-theme.css
│ └── validation
│ └── messages_zh.js
├── .idea
├── modules.xml
├── misc.xml
├── dataSources.xml
├── mysite.iml
└── dataSources.ids
├── templates
├── admin
│ └── base_site.html
├── page.html
└── index.html
├── manage.py
└── redeme.md
/app01/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/mysite/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app01/migrations/__init__.py:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/app01/tests.py:
--------------------------------------------------------------------------------
1 | from django.test import TestCase
2 |
3 | # Create your tests here.
4 |
--------------------------------------------------------------------------------
/db.sqlite3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/db.sqlite3
--------------------------------------------------------------------------------
/预览图/1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/预览图/1.png
--------------------------------------------------------------------------------
/预览图/2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/预览图/2.png
--------------------------------------------------------------------------------
/预览图/3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/预览图/3.png
--------------------------------------------------------------------------------
/预览图/4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/预览图/4.png
--------------------------------------------------------------------------------
/预览图/5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/预览图/5.png
--------------------------------------------------------------------------------
/预览图/6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/预览图/6.png
--------------------------------------------------------------------------------
/预览图/7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/预览图/7.png
--------------------------------------------------------------------------------
/预览图/8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/预览图/8.png
--------------------------------------------------------------------------------
/app01/apps.py:
--------------------------------------------------------------------------------
1 | from django.apps import AppConfig
2 |
3 |
4 | class App01Config(AppConfig):
5 | name = 'app01'
6 |
--------------------------------------------------------------------------------
/static/dist/img/image30.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/static/dist/img/image30.png
--------------------------------------------------------------------------------
/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.eot
--------------------------------------------------------------------------------
/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.ttf
--------------------------------------------------------------------------------
/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff
--------------------------------------------------------------------------------
/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/feixuelove1009/mysite-hotpoint/HEAD/static/plugins/bootstrap/fonts/glyphicons-halflings-regular.woff2
--------------------------------------------------------------------------------
/app01/admin.py:
--------------------------------------------------------------------------------
1 | from django.contrib import admin
2 | from app01 import models
3 | # Register your models here.
4 |
5 | admin.site.register(models.User)
6 | admin.site.register(models.Article)
7 | admin.site.register(models.Comment)
8 | admin.site.register(models.Picture)
--------------------------------------------------------------------------------
/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
11
289 |11
290 | {% if CURRENT_PART_ORDER.1 == "time" %} 291 | 最新 292 | 最热 293 | {% elif CURRENT_PART_ORDER.1 == "comment" %} 294 | 最新 295 | 最热 296 | {% endif %} 297 | 300 | 301 |311 | {{ article.title }} 312 | {{ article.url_2 }} {{ article.type }} 313 |
314 |315 | {{ article.abstract }} 316 |
317 |