├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── flaskerizer ├── __init__.py ├── __main__.py └── flaskerizer_src │ ├── HTTP_status_dict.py │ ├── __init__.py │ ├── command_line_arguments.py │ ├── examples │ ├── Alstar_example │ │ ├── Readme.txt │ │ ├── __init__.py │ │ ├── color │ │ │ └── default.css │ │ ├── contactform │ │ │ ├── Readme.txt │ │ │ └── contactform.js │ │ ├── css │ │ │ ├── animate.css │ │ │ ├── bootstrap.min.css │ │ │ ├── font-awesome.min.css │ │ │ ├── overwrite.css │ │ │ ├── simpletextrotator.css │ │ │ └── style.css │ │ ├── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ │ ├── img │ │ │ ├── about-img.jpg │ │ │ ├── bgslides │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ └── 3.jpg │ │ │ ├── browser.png │ │ │ ├── clients │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ ├── 3.png │ │ │ │ └── 4.png │ │ │ ├── parallax │ │ │ │ ├── 1.jpg │ │ │ │ └── 2.jpg │ │ │ ├── screenshots │ │ │ │ ├── 1.png │ │ │ │ ├── 2.png │ │ │ │ └── 3.png │ │ │ ├── team │ │ │ │ ├── 1.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ └── 4.jpg │ │ │ └── works │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ ├── 9.jpg │ │ │ │ └── thumbs │ │ │ │ ├── 1.jpg │ │ │ │ ├── 10.jpg │ │ │ │ ├── 11.jpg │ │ │ │ ├── 12.jpg │ │ │ │ ├── 2.jpg │ │ │ │ ├── 3.jpg │ │ │ │ ├── 4.jpg │ │ │ │ ├── 5.jpg │ │ │ │ ├── 6.jpg │ │ │ │ ├── 7.jpg │ │ │ │ ├── 8.jpg │ │ │ │ └── 9.jpg │ │ ├── index.html │ │ └── js │ │ │ ├── bootstrap.min.js │ │ │ ├── custom.js │ │ │ ├── grid.js │ │ │ ├── jquery.js │ │ │ ├── jquery.nav.js │ │ │ ├── jquery.scrollTo.min.js │ │ │ ├── jquery.simple-text-rotator.min.js │ │ │ ├── mb.bgndGallery.effects.js │ │ │ ├── mb.bgndGallery.js │ │ │ ├── modernizr.custom.js │ │ │ ├── stellar.js │ │ │ └── wow.min.js │ └── __init__.py │ ├── status_code_to_word.py │ ├── structure_directory.py │ ├── target_folders.py │ ├── tests │ ├── __init__.py │ ├── test_status_code_to_word.py │ ├── test_structure_directory.py │ ├── test_write_app.py │ └── testing_files │ │ ├── __init__.py │ │ ├── app_test_file.py │ │ ├── large_Test_application_test_folder │ │ ├── Test_application │ │ │ ├── __init__.py │ │ │ ├── routes.py │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── 000004default.css │ │ │ │ │ ├── 000007animate.css │ │ │ │ │ ├── 000008bootstrap.min.css │ │ │ │ │ ├── 000009font-awesome.min.css │ │ │ │ │ ├── 000010overwrite.css │ │ │ │ │ ├── 000011simpletextrotator.css │ │ │ │ │ └── 000012style.css │ │ │ │ ├── fonts │ │ │ │ │ ├── 000013fontawesome-webfont.eot │ │ │ │ │ ├── 000014fontawesome-webfont.svg │ │ │ │ │ ├── 000015fontawesome-webfont.ttf │ │ │ │ │ ├── 000016fontawesome-webfont.woff │ │ │ │ │ ├── 000017fontawesome-webfont.woff2 │ │ │ │ │ └── 000018FontAwesome.otf │ │ │ │ ├── img │ │ │ │ │ ├── 000019about-img.jpg │ │ │ │ │ ├── 000020browser.png │ │ │ │ │ ├── 0000211.jpg │ │ │ │ │ ├── 0000222.jpg │ │ │ │ │ ├── 0000233.jpg │ │ │ │ │ ├── 0000241.png │ │ │ │ │ ├── 0000252.png │ │ │ │ │ ├── 0000263.png │ │ │ │ │ ├── 0000274.png │ │ │ │ │ ├── 0000281.jpg │ │ │ │ │ ├── 0000292.jpg │ │ │ │ │ ├── 0000301.png │ │ │ │ │ ├── 0000312.png │ │ │ │ │ ├── 0000323.png │ │ │ │ │ ├── 0000331.jpg │ │ │ │ │ ├── 0000342.jpg │ │ │ │ │ ├── 0000353.jpg │ │ │ │ │ ├── 0000364.jpg │ │ │ │ │ ├── 0000371.jpg │ │ │ │ │ ├── 00003810.jpg │ │ │ │ │ ├── 00003911.jpg │ │ │ │ │ ├── 00004012.jpg │ │ │ │ │ ├── 0000412.jpg │ │ │ │ │ ├── 0000423.jpg │ │ │ │ │ ├── 0000434.jpg │ │ │ │ │ ├── 0000445.jpg │ │ │ │ │ ├── 0000456.jpg │ │ │ │ │ ├── 0000467.jpg │ │ │ │ │ ├── 0000478.jpg │ │ │ │ │ ├── 0000489.jpg │ │ │ │ │ ├── 0000491.jpg │ │ │ │ │ ├── 00005010.jpg │ │ │ │ │ ├── 00005111.jpg │ │ │ │ │ ├── 00005212.jpg │ │ │ │ │ ├── 0000532.jpg │ │ │ │ │ ├── 0000543.jpg │ │ │ │ │ ├── 0000554.jpg │ │ │ │ │ ├── 0000565.jpg │ │ │ │ │ ├── 0000576.jpg │ │ │ │ │ ├── 0000587.jpg │ │ │ │ │ ├── 0000598.jpg │ │ │ │ │ └── 0000609.jpg │ │ │ │ └── js │ │ │ │ │ ├── 000005contactform.js │ │ │ │ │ ├── 000061bootstrap.min.js │ │ │ │ │ ├── 000062custom.js │ │ │ │ │ ├── 000063grid.js │ │ │ │ │ ├── 000064jquery.js │ │ │ │ │ ├── 000065jquery.nav.js │ │ │ │ │ ├── 000066jquery.scrollTo.min.js │ │ │ │ │ ├── 000067jquery.simple-text-rotator.min.js │ │ │ │ │ ├── 000068mb.bgndGallery.effects.js │ │ │ │ │ ├── 000069mb.bgndGallery.js │ │ │ │ │ ├── 000070modernizr.custom.js │ │ │ │ │ ├── 000071stellar.js │ │ │ │ │ └── 000072wow.min.js │ │ │ └── templates │ │ │ │ └── index.html │ │ ├── __init__.py │ │ └── setup.py │ │ └── routes_test_file.py │ └── write_app.py ├── readme_images ├── not_working_example.png └── working_example.png ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/README.md -------------------------------------------------------------------------------- /flaskerizer/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /flaskerizer/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/__main__.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/HTTP_status_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/HTTP_status_dict.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/__init__.py: -------------------------------------------------------------------------------- 1 | import flaskerizer -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/command_line_arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/command_line_arguments.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/Readme.txt -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/color/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/color/default.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/contactform/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/contactform/Readme.txt -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/contactform/contactform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/contactform/contactform.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/css/animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/css/animate.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/css/bootstrap.min.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/css/font-awesome.min.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/css/overwrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/css/overwrite.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/css/simpletextrotator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/css/simpletextrotator.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/css/style.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/about-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/about-img.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/bgslides/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/bgslides/1.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/bgslides/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/bgslides/2.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/bgslides/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/bgslides/3.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/browser.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/clients/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/clients/1.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/clients/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/clients/2.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/clients/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/clients/3.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/clients/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/clients/4.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/parallax/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/parallax/1.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/parallax/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/parallax/2.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/screenshots/1.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/screenshots/2.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/screenshots/3.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/team/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/team/1.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/team/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/team/2.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/team/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/team/3.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/team/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/team/4.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/1.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/10.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/11.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/12.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/2.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/3.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/4.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/5.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/6.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/7.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/8.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/9.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/1.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/10.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/11.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/12.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/2.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/3.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/4.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/5.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/6.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/7.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/8.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/img/works/thumbs/9.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/index.html -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/bootstrap.min.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/custom.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/grid.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/jquery.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/jquery.nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/jquery.nav.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/jquery.simple-text-rotator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/jquery.simple-text-rotator.min.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/mb.bgndGallery.effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/mb.bgndGallery.effects.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/mb.bgndGallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/mb.bgndGallery.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/modernizr.custom.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/stellar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/stellar.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/Alstar_example/js/wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/examples/Alstar_example/js/wow.min.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/status_code_to_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/status_code_to_word.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/structure_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/structure_directory.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/target_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/target_folders.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/test_status_code_to_word.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/test_status_code_to_word.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/test_structure_directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/test_structure_directory.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/test_write_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/test_write_app.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/app_test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/app_test_file.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/__init__.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/routes.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000004default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000004default.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000007animate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000007animate.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000008bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000008bootstrap.min.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000009font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000009font-awesome.min.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000010overwrite.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000010overwrite.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000011simpletextrotator.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000011simpletextrotator.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000012style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/css/000012style.css -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000013fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000013fontawesome-webfont.eot -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000014fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000014fontawesome-webfont.svg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000015fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000015fontawesome-webfont.ttf -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000016fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000016fontawesome-webfont.woff -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000017fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000017fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000018FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/fonts/000018FontAwesome.otf -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/000019about-img.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/000019about-img.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/000020browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/000020browser.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000211.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000211.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000222.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000222.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000233.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000233.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000241.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000241.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000252.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000252.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000263.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000263.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000274.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000274.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000281.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000281.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000292.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000292.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000301.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000301.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000312.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000312.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000323.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000323.png -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000331.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000331.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000342.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000342.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000353.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000353.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000364.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000364.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000371.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000371.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00003810.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00003810.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00003911.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00003911.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00004012.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00004012.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000412.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000412.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000423.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000423.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000434.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000434.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000445.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000445.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000456.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000456.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000467.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000467.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000478.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000478.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000489.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000489.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000491.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000491.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00005010.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00005010.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00005111.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00005111.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00005212.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/00005212.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000532.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000532.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000543.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000543.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000554.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000554.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000565.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000565.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000576.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000576.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000587.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000587.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000598.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000598.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000609.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/img/0000609.jpg -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000005contactform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000005contactform.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000061bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000061bootstrap.min.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000062custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000062custom.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000063grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000063grid.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000064jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000064jquery.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000065jquery.nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000065jquery.nav.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000066jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000066jquery.scrollTo.min.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000067jquery.simple-text-rotator.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000067jquery.simple-text-rotator.min.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000068mb.bgndGallery.effects.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000068mb.bgndGallery.effects.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000069mb.bgndGallery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000069mb.bgndGallery.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000070modernizr.custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000070modernizr.custom.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000071stellar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000071stellar.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000072wow.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/static/js/000072wow.min.js -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/Test_application/templates/index.html -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/large_Test_application_test_folder/setup.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/tests/testing_files/routes_test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/tests/testing_files/routes_test_file.py -------------------------------------------------------------------------------- /flaskerizer/flaskerizer_src/write_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/flaskerizer/flaskerizer_src/write_app.py -------------------------------------------------------------------------------- /readme_images/not_working_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/readme_images/not_working_example.png -------------------------------------------------------------------------------- /readme_images/working_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/readme_images/working_example.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==0.12.3 2 | numpy==1.15.1 3 | 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettvanderwerff/Flaskerizer/HEAD/setup.py --------------------------------------------------------------------------------