├── .gitattributes ├── .gitignore ├── LICENSE ├── Procfile ├── Procfile.dev ├── README.md ├── _updated ├── .gitignore ├── Makefile ├── Procfile ├── README.md ├── app │ ├── __init__.py │ ├── controllers │ │ ├── __init__.py │ │ └── pages.py │ ├── forms.py │ ├── static │ │ ├── css │ │ │ ├── bootstrap-3.0.0.min.css │ │ │ ├── bootstrap-theme-3.0.0.css │ │ │ ├── bootstrap-theme-3.0.0.min.css │ │ │ ├── font-awesome-4.0.1.min.css │ │ │ ├── layout.forms.css │ │ │ ├── layout.main.css │ │ │ ├── main.css │ │ │ ├── main.quickfix.css │ │ │ └── main.responsive.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ └── fontawesome-webfont.woff │ │ ├── ico │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ └── favicon.png │ │ ├── img │ │ │ └── .gitkeep │ │ └── js │ │ │ ├── libs │ │ │ ├── bootstrap-3.0.0.min.js │ │ │ ├── jquery-1.10.2.min.js │ │ │ ├── modernizr-2.6.2.min.js │ │ │ └── respond-1.3.0.min.js │ │ │ ├── plugins.js │ │ │ └── script.js │ └── templates │ │ ├── errors │ │ ├── 404.html │ │ └── 500.html │ │ ├── forms │ │ ├── forgot.html │ │ ├── login.html │ │ └── register.html │ │ ├── layouts │ │ ├── form.html │ │ └── main.html │ │ └── pages │ │ ├── placeholder.about.html │ │ └── placeholder.home.html ├── config │ ├── __init__.py │ └── development │ │ ├── __init__.py │ │ └── requirements.txt ├── run.py ├── shell.py └── tests │ ├── __init__.py │ ├── helpers.py │ └── test_page.py ├── app.py ├── config.py ├── error.log ├── fabfile.py ├── forms.py ├── models.py ├── requirements.txt ├── screenshots ├── forms.png └── pages.png ├── static ├── css │ ├── bootstrap-3.1.1.min.css │ ├── bootstrap-theme-3.1.1.css │ ├── bootstrap-theme-3.1.1.min.css │ ├── bootstrap-theme.css.map │ ├── bootstrap.css.map │ ├── font-awesome-4.1.0.min.css │ ├── layout.forms.css │ ├── layout.main.css │ ├── main.css │ ├── main.quickfix.css │ └── main.responsive.css ├── fonts │ ├── FontAwesome.otf │ ├── fontawesome-webfont.eot │ ├── fontawesome-webfont.svg │ ├── fontawesome-webfont.ttf │ └── fontawesome-webfont.woff ├── ico │ ├── apple-touch-icon-114-precomposed.png │ ├── apple-touch-icon-144-precomposed.png │ ├── apple-touch-icon-57-precomposed.png │ ├── apple-touch-icon-72-precomposed.png │ └── favicon.png ├── img │ └── .gitkeep └── js │ ├── libs │ ├── bootstrap-3.1.1.min.js │ ├── jquery-1.11.1.min.js │ ├── jquery-1.11.1.min.map │ ├── modernizr-2.8.2.min.js │ └── respond-1.4.2.min.js │ ├── plugins.js │ └── script.js └── templates ├── errors ├── 404.html └── 500.html ├── forms ├── forgot.html ├── login.html └── register.html ├── layouts ├── form.html └── main.html └── pages ├── placeholder.about.html └── placeholder.home.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn app:app --log-file=- 2 | -------------------------------------------------------------------------------- /Procfile.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/Procfile.dev -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /_updated/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | env 4 | venv -------------------------------------------------------------------------------- /_updated/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/Makefile -------------------------------------------------------------------------------- /_updated/Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn wsgi:app 2 | -------------------------------------------------------------------------------- /_updated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/README.md -------------------------------------------------------------------------------- /_updated/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/__init__.py -------------------------------------------------------------------------------- /_updated/app/controllers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_updated/app/controllers/pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/controllers/pages.py -------------------------------------------------------------------------------- /_updated/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/forms.py -------------------------------------------------------------------------------- /_updated/app/static/css/bootstrap-3.0.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/css/bootstrap-3.0.0.min.css -------------------------------------------------------------------------------- /_updated/app/static/css/bootstrap-theme-3.0.0.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/css/bootstrap-theme-3.0.0.css -------------------------------------------------------------------------------- /_updated/app/static/css/bootstrap-theme-3.0.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/css/bootstrap-theme-3.0.0.min.css -------------------------------------------------------------------------------- /_updated/app/static/css/font-awesome-4.0.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/css/font-awesome-4.0.1.min.css -------------------------------------------------------------------------------- /_updated/app/static/css/layout.forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/css/layout.forms.css -------------------------------------------------------------------------------- /_updated/app/static/css/layout.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/css/layout.main.css -------------------------------------------------------------------------------- /_updated/app/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/css/main.css -------------------------------------------------------------------------------- /_updated/app/static/css/main.quickfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/css/main.quickfix.css -------------------------------------------------------------------------------- /_updated/app/static/css/main.responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/css/main.responsive.css -------------------------------------------------------------------------------- /_updated/app/static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /_updated/app/static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /_updated/app/static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /_updated/app/static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /_updated/app/static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /_updated/app/static/ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /_updated/app/static/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /_updated/app/static/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /_updated/app/static/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /_updated/app/static/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/ico/favicon.png -------------------------------------------------------------------------------- /_updated/app/static/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_updated/app/static/js/libs/bootstrap-3.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/js/libs/bootstrap-3.0.0.min.js -------------------------------------------------------------------------------- /_updated/app/static/js/libs/jquery-1.10.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/js/libs/jquery-1.10.2.min.js -------------------------------------------------------------------------------- /_updated/app/static/js/libs/modernizr-2.6.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/js/libs/modernizr-2.6.2.min.js -------------------------------------------------------------------------------- /_updated/app/static/js/libs/respond-1.3.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/js/libs/respond-1.3.0.min.js -------------------------------------------------------------------------------- /_updated/app/static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/static/js/plugins.js -------------------------------------------------------------------------------- /_updated/app/static/js/script.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | }).call(this); 4 | -------------------------------------------------------------------------------- /_updated/app/templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/templates/errors/404.html -------------------------------------------------------------------------------- /_updated/app/templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/templates/errors/500.html -------------------------------------------------------------------------------- /_updated/app/templates/forms/forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/templates/forms/forgot.html -------------------------------------------------------------------------------- /_updated/app/templates/forms/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/templates/forms/login.html -------------------------------------------------------------------------------- /_updated/app/templates/forms/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/templates/forms/register.html -------------------------------------------------------------------------------- /_updated/app/templates/layouts/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/templates/layouts/form.html -------------------------------------------------------------------------------- /_updated/app/templates/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/templates/layouts/main.html -------------------------------------------------------------------------------- /_updated/app/templates/pages/placeholder.about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/templates/pages/placeholder.about.html -------------------------------------------------------------------------------- /_updated/app/templates/pages/placeholder.home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/app/templates/pages/placeholder.home.html -------------------------------------------------------------------------------- /_updated/config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_updated/config/development/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/config/development/__init__.py -------------------------------------------------------------------------------- /_updated/config/development/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/config/development/requirements.txt -------------------------------------------------------------------------------- /_updated/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/run.py -------------------------------------------------------------------------------- /_updated/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/shell.py -------------------------------------------------------------------------------- /_updated/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_updated/tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/tests/helpers.py -------------------------------------------------------------------------------- /_updated/tests/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/_updated/tests/test_page.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/app.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/config.py -------------------------------------------------------------------------------- /error.log: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /fabfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/fabfile.py -------------------------------------------------------------------------------- /forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/forms.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/requirements.txt -------------------------------------------------------------------------------- /screenshots/forms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/screenshots/forms.png -------------------------------------------------------------------------------- /screenshots/pages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/screenshots/pages.png -------------------------------------------------------------------------------- /static/css/bootstrap-3.1.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/bootstrap-3.1.1.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme-3.1.1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/bootstrap-theme-3.1.1.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme-3.1.1.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/bootstrap-theme-3.1.1.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /static/css/font-awesome-4.1.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/font-awesome-4.1.0.min.css -------------------------------------------------------------------------------- /static/css/layout.forms.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/layout.forms.css -------------------------------------------------------------------------------- /static/css/layout.main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/layout.main.css -------------------------------------------------------------------------------- /static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/main.css -------------------------------------------------------------------------------- /static/css/main.quickfix.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/main.quickfix.css -------------------------------------------------------------------------------- /static/css/main.responsive.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/css/main.responsive.css -------------------------------------------------------------------------------- /static/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /static/ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /static/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /static/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /static/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /static/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/ico/favicon.png -------------------------------------------------------------------------------- /static/img/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/libs/bootstrap-3.1.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/js/libs/bootstrap-3.1.1.min.js -------------------------------------------------------------------------------- /static/js/libs/jquery-1.11.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/js/libs/jquery-1.11.1.min.js -------------------------------------------------------------------------------- /static/js/libs/jquery-1.11.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/js/libs/jquery-1.11.1.min.map -------------------------------------------------------------------------------- /static/js/libs/modernizr-2.8.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/js/libs/modernizr-2.8.2.min.js -------------------------------------------------------------------------------- /static/js/libs/respond-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/js/libs/respond-1.4.2.min.js -------------------------------------------------------------------------------- /static/js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/static/js/plugins.js -------------------------------------------------------------------------------- /static/js/script.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | }).call(this); 4 | -------------------------------------------------------------------------------- /templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/templates/errors/404.html -------------------------------------------------------------------------------- /templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/templates/errors/500.html -------------------------------------------------------------------------------- /templates/forms/forgot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/templates/forms/forgot.html -------------------------------------------------------------------------------- /templates/forms/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/templates/forms/login.html -------------------------------------------------------------------------------- /templates/forms/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/templates/forms/register.html -------------------------------------------------------------------------------- /templates/layouts/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/templates/layouts/form.html -------------------------------------------------------------------------------- /templates/layouts/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/templates/layouts/main.html -------------------------------------------------------------------------------- /templates/pages/placeholder.about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/templates/pages/placeholder.about.html -------------------------------------------------------------------------------- /templates/pages/placeholder.home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realpython/flask-boilerplate/HEAD/templates/pages/placeholder.home.html --------------------------------------------------------------------------------