├── README.md ├── css └── styles.css ├── img └── icon.png ├── index.html ├── js └── app.js ├── manifest.webmanifest ├── publish-as-page.png └── sw.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepo8/github-page-pwa/HEAD/README.md -------------------------------------------------------------------------------- /css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepo8/github-page-pwa/HEAD/css/styles.css -------------------------------------------------------------------------------- /img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepo8/github-page-pwa/HEAD/img/icon.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepo8/github-page-pwa/HEAD/index.html -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- 1 | console.log('I am running!'); -------------------------------------------------------------------------------- /manifest.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepo8/github-page-pwa/HEAD/manifest.webmanifest -------------------------------------------------------------------------------- /publish-as-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepo8/github-page-pwa/HEAD/publish-as-page.png -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codepo8/github-page-pwa/HEAD/sw.js --------------------------------------------------------------------------------