├── app ├── core │ ├── __init__.py │ ├── home │ │ ├── forms.py │ │ ├── __init__.py │ │ ├── urls.py │ │ └── views.py │ ├── page │ │ ├── forms.py │ │ ├── __init__.py │ │ └── views.py │ ├── admin │ │ ├── __init__.py │ │ ├── forms.py │ │ └── views.py │ ├── module │ │ ├── forms.py │ │ ├── static │ │ │ ├── robots.txt │ │ │ ├── sitemap.xml.gz │ │ │ ├── sitemap.html │ │ │ ├── sitemap_baidu.xml │ │ │ └── sitemap.xml │ │ ├── __init__.py │ │ └── views.py │ ├── apiv1 │ │ ├── __init__.py │ │ ├── fields.py │ │ ├── views.py │ │ └── service.py │ ├── models.py │ ├── constants.py │ └── views.py ├── service │ ├── __init__.py │ └── BaseService.py ├── static │ ├── images │ │ ├── bg.png │ │ ├── jfs.jpg │ │ ├── logo.gif │ │ ├── img_012.gif │ │ ├── img_exit.gif │ │ ├── spot_cats.gif │ │ ├── web_logo.gif │ │ └── animated_favicon1.gif │ └── css │ │ ├── pagenavi-css.css │ │ └── style.css ├── templates │ ├── new │ │ ├── logo.gif │ │ ├── css │ │ │ └── style.css │ │ └── index.html │ ├── admin_template │ │ └── admin.html │ ├── test.jinja2 │ ├── commentbox.html │ ├── home │ │ ├── archive.jinja2 │ │ ├── category.jinja2 │ │ ├── tag.jinja2 │ │ ├── index.jinja2 │ │ └── post.jinja2 │ ├── comment.html │ ├── sidebar.html │ ├── tag.jinja2 │ ├── utils.html │ ├── index.jinja2 │ ├── post.jinja2 │ └── base.jinja2 └── __init__.py ├── logs └── make_git_happy ├── README.md ├── wsgi.py ├── .gitignore ├── config.py ├── requirements.txt ├── api_docs ├── PageDataFormat.md └── RESTful.raml └── manage.py /app/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/core/home/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/core/page/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/core/admin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/core/module/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/core/module/static/robots.txt: -------------------------------------------------------------------------------- 1 | hahah 2 | -------------------------------------------------------------------------------- /app/service/__init__.py: -------------------------------------------------------------------------------- 1 | from config import logger 2 | -------------------------------------------------------------------------------- /logs/make_git_happy: -------------------------------------------------------------------------------- 1 | no say.... 2 | say happy please.... 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # wp2flask-cms 2 | A CMS engine written in Flask for tigang.net 3 | -------------------------------------------------------------------------------- /app/static/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HB6H057/wp2flask-cms/HEAD/app/static/images/bg.png -------------------------------------------------------------------------------- /app/static/images/jfs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HB6H057/wp2flask-cms/HEAD/app/static/images/jfs.jpg -------------------------------------------------------------------------------- /app/static/images/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HB6H057/wp2flask-cms/HEAD/app/static/images/logo.gif -------------------------------------------------------------------------------- /app/templates/new/logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HB6H057/wp2flask-cms/HEAD/app/templates/new/logo.gif -------------------------------------------------------------------------------- /app/static/images/img_012.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HB6H057/wp2flask-cms/HEAD/app/static/images/img_012.gif -------------------------------------------------------------------------------- /app/static/images/img_exit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HB6H057/wp2flask-cms/HEAD/app/static/images/img_exit.gif -------------------------------------------------------------------------------- /app/static/images/spot_cats.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HB6H057/wp2flask-cms/HEAD/app/static/images/spot_cats.gif -------------------------------------------------------------------------------- /app/static/images/web_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HB6H057/wp2flask-cms/HEAD/app/static/images/web_logo.gif -------------------------------------------------------------------------------- /app/core/module/static/sitemap.xml.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HB6H057/wp2flask-cms/HEAD/app/core/module/static/sitemap.xml.gz -------------------------------------------------------------------------------- /app/core/page/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Blueprint 2 | 3 | page = Blueprint('page', __name__) 4 | 5 | from . import views 6 | -------------------------------------------------------------------------------- /app/core/home/__init__.py: -------------------------------------------------------------------------------- 1 | from flask import Blueprint 2 | 3 | home = Blueprint('home', __name__) 4 | 5 | from . import views, urls 6 | -------------------------------------------------------------------------------- /app/static/images/animated_favicon1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HB6H057/wp2flask-cms/HEAD/app/static/images/animated_favicon1.gif -------------------------------------------------------------------------------- /wsgi.py: -------------------------------------------------------------------------------- 1 | from app import create_app 2 | 3 | application = create_app() 4 | 5 | if __name__ == '__main__': 6 | application.run() 7 | -------------------------------------------------------------------------------- /app/templates/admin_template/admin.html: -------------------------------------------------------------------------------- 1 | {% extends 'admin/index.html' %} 2 | {% block body %} 3 |
{{c.content}}
9 |Copyright © 高中复习提纲网为公益性网站,为服务师生而建,部分内容来源网络,版权为原作者所有.
90 |
如无意中侵犯了您的版权,或是含有非法内容,请及时与我们联系请来信告知,我们将在第一时间做出回应!谢谢!
Powered by wp2flask-cms and Theme by Wpyou and Sitemap 92 |
93 | 94 |