├── README.md ├── templates ├── index.html └── layout.html ├── static ├── images │ ├── pwa-dark.png │ ├── pwa-light.png │ ├── pwa-dark@2x.png │ ├── pwa-light@2x.png │ ├── luca-bravo-272609.png │ ├── william-iven-8514.jpg │ ├── harprit-bola-239056.png │ ├── kevin-bhagat-461952.jpg │ ├── android-launchericon-144-144.png │ ├── android-launchericon-192-192.png │ ├── android-launchericon-48-48.png │ ├── android-launchericon-512-512.png │ ├── android-launchericon-72-72.png │ ├── android-launchericon-96-96.png │ └── marta-de-la-concepcion-97951.jpg ├── styles.css ├── offline.html ├── manifest.json ├── app.js └── service-worker.js └── flask-pwa.py /README.md: -------------------------------------------------------------------------------- 1 | # PWA-Flask-Python-Template 2 | PWA with python Flask 3 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- 1 | {% extends 'layout.html' %} 2 | {% block body %} 3 | 4 | 5 | 6 | {% endblock %} -------------------------------------------------------------------------------- /static/images/pwa-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/pwa-dark.png -------------------------------------------------------------------------------- /static/images/pwa-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/pwa-light.png -------------------------------------------------------------------------------- /static/images/pwa-dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/pwa-dark@2x.png -------------------------------------------------------------------------------- /static/images/pwa-light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/pwa-light@2x.png -------------------------------------------------------------------------------- /static/images/luca-bravo-272609.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/luca-bravo-272609.png -------------------------------------------------------------------------------- /static/images/william-iven-8514.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/william-iven-8514.jpg -------------------------------------------------------------------------------- /static/images/harprit-bola-239056.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/harprit-bola-239056.png -------------------------------------------------------------------------------- /static/images/kevin-bhagat-461952.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/kevin-bhagat-461952.jpg -------------------------------------------------------------------------------- /static/images/android-launchericon-144-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/android-launchericon-144-144.png -------------------------------------------------------------------------------- /static/images/android-launchericon-192-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/android-launchericon-192-192.png -------------------------------------------------------------------------------- /static/images/android-launchericon-48-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/android-launchericon-48-48.png -------------------------------------------------------------------------------- /static/images/android-launchericon-512-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/android-launchericon-512-512.png -------------------------------------------------------------------------------- /static/images/android-launchericon-72-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/android-launchericon-72-72.png -------------------------------------------------------------------------------- /static/images/android-launchericon-96-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/android-launchericon-96-96.png -------------------------------------------------------------------------------- /static/images/marta-de-la-concepcion-97951.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/soumilshah1995/PWA-Flask-Python-Template/HEAD/static/images/marta-de-la-concepcion-97951.jpg -------------------------------------------------------------------------------- /static/styles.css: -------------------------------------------------------------------------------- 1 | 2 | h1{ 3 | color: red; 4 | text-align: center; 5 | } 6 | 7 | p{ 8 | color: black; 9 | text-align: center; 10 | } 11 | 12 | .jumbotron{ 13 | height: 60vh; 14 | } 15 | 16 | li{ 17 | color: white; 18 | } 19 | -------------------------------------------------------------------------------- /static/offline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |The next BIG thing for the mobile web!
36 | 37 |