├── .gitignore ├── Dockerfile ├── README.md ├── __init__.py ├── blog ├── __init__.py ├── form.py ├── models.py └── views.py ├── manage.py ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ ├── 33d0af947fd8_.py │ ├── 38c47f708a0_.py │ ├── 5182790fa2e7_.py │ ├── 5728d994b096_.py │ ├── a4c6606d74f_.py │ └── b53f0dd2474_.py ├── requirements.txt ├── settings.py ├── static ├── bootstrap │ ├── css │ │ ├── bootstrap-theme.css │ │ ├── bootstrap-theme.css.map │ │ ├── bootstrap-theme.min.css │ │ ├── bootstrap.css │ │ ├── bootstrap.css.map │ │ └── bootstrap.min.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ └── js │ │ ├── bootstrap.js │ │ ├── bootstrap.min.js │ │ └── npm.js ├── images │ └── __init__.py └── javascript │ └── jquery-1.11.2.min.js ├── templates ├── _flashmessages.html ├── _formhelpers.html ├── base.html ├── blog │ ├── admin.html │ ├── article.html │ ├── index.html │ ├── post.html │ └── setup.html └── user │ ├── login.html │ └── register.html └── user ├── __init__.py ├── decorators.py ├── form.py ├── models.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/__init__.py -------------------------------------------------------------------------------- /blog/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /blog/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/blog/form.py -------------------------------------------------------------------------------- /blog/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/blog/models.py -------------------------------------------------------------------------------- /blog/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/blog/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/manage.py -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/33d0af947fd8_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/migrations/versions/33d0af947fd8_.py -------------------------------------------------------------------------------- /migrations/versions/38c47f708a0_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/migrations/versions/38c47f708a0_.py -------------------------------------------------------------------------------- /migrations/versions/5182790fa2e7_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/migrations/versions/5182790fa2e7_.py -------------------------------------------------------------------------------- /migrations/versions/5728d994b096_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/migrations/versions/5728d994b096_.py -------------------------------------------------------------------------------- /migrations/versions/a4c6606d74f_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/migrations/versions/a4c6606d74f_.py -------------------------------------------------------------------------------- /migrations/versions/b53f0dd2474_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/migrations/versions/b53f0dd2474_.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/requirements.txt -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/settings.py -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/bootstrap/js/npm.js -------------------------------------------------------------------------------- /static/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/javascript/jquery-1.11.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/static/javascript/jquery-1.11.2.min.js -------------------------------------------------------------------------------- /templates/_flashmessages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/templates/_flashmessages.html -------------------------------------------------------------------------------- /templates/_formhelpers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/templates/_formhelpers.html -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/blog/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/templates/blog/admin.html -------------------------------------------------------------------------------- /templates/blog/article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/templates/blog/article.html -------------------------------------------------------------------------------- /templates/blog/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/templates/blog/index.html -------------------------------------------------------------------------------- /templates/blog/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/templates/blog/post.html -------------------------------------------------------------------------------- /templates/blog/setup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/templates/blog/setup.html -------------------------------------------------------------------------------- /templates/user/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/templates/user/login.html -------------------------------------------------------------------------------- /templates/user/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/templates/user/register.html -------------------------------------------------------------------------------- /user/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /user/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/user/decorators.py -------------------------------------------------------------------------------- /user/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/user/form.py -------------------------------------------------------------------------------- /user/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/user/models.py -------------------------------------------------------------------------------- /user/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cogentii/flask_blog/HEAD/user/views.py --------------------------------------------------------------------------------