├── .firebaserc ├── .gitignore ├── LICENSE ├── database.rules.json ├── firebase.json ├── functions ├── index.js ├── package-lock.json └── package.json ├── package.json ├── readme.md ├── src ├── ads │ └── ad.html ├── components │ ├── app-detail │ │ ├── app-detail.scss │ │ └── app-detail.tsx │ ├── app-header │ │ ├── app-header.scss │ │ └── app-header.tsx │ ├── app-list │ │ ├── app-list.scss │ │ └── app-list.tsx │ ├── app-login │ │ ├── app-login.scss │ │ └── app-login.tsx │ ├── app-toast │ │ ├── app-toast.scss │ │ └── app-toast.tsx │ ├── lazy-ad │ │ ├── lazy-ad.scss │ │ └── lazy-ad.tsx │ ├── lazy-img │ │ ├── lazy-img.scss │ │ └── lazy-img.tsx │ ├── list-page │ │ ├── list-page.scss │ │ └── list-page.tsx │ ├── main-page │ │ ├── main-page.scss │ │ └── main-page.tsx │ ├── routes-page │ │ ├── routes-page.scss │ │ └── routes-page.tsx │ ├── share-button │ │ ├── share-button.scss │ │ └── share-button.tsx │ ├── stencil-route-link │ │ ├── stencil-route-link.scss │ │ └── stencil-route-link.tsx │ ├── stencil-route │ │ ├── stencil-route.scss │ │ └── stencil-route.tsx │ └── stencil-router │ │ ├── stencil-router.scss │ │ └── stencil-router.tsx └── index.html ├── stencil.config.js ├── tsconfig.json ├── workbox-cli-config.js └── www ├── ads └── ad.html ├── build ├── app.js └── app.registry.json ├── favicon.ico ├── firebase-messaging-sw.js ├── images └── 512.png ├── index.html ├── manifest.json ├── sw.js └── workbox-sw.prod.v1.1.0.js /.firebaserc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/.firebaserc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/LICENSE -------------------------------------------------------------------------------- /database.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/database.rules.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/firebase.json -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/functions/package.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/readme.md -------------------------------------------------------------------------------- /src/ads/ad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/ads/ad.html -------------------------------------------------------------------------------- /src/components/app-detail/app-detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/app-detail/app-detail.scss -------------------------------------------------------------------------------- /src/components/app-detail/app-detail.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/app-detail/app-detail.tsx -------------------------------------------------------------------------------- /src/components/app-header/app-header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/app-header/app-header.scss -------------------------------------------------------------------------------- /src/components/app-header/app-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/app-header/app-header.tsx -------------------------------------------------------------------------------- /src/components/app-list/app-list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/app-list/app-list.scss -------------------------------------------------------------------------------- /src/components/app-list/app-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/app-list/app-list.tsx -------------------------------------------------------------------------------- /src/components/app-login/app-login.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/app-login/app-login.scss -------------------------------------------------------------------------------- /src/components/app-login/app-login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/app-login/app-login.tsx -------------------------------------------------------------------------------- /src/components/app-toast/app-toast.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/app-toast/app-toast.scss -------------------------------------------------------------------------------- /src/components/app-toast/app-toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/app-toast/app-toast.tsx -------------------------------------------------------------------------------- /src/components/lazy-ad/lazy-ad.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/lazy-ad/lazy-ad.scss -------------------------------------------------------------------------------- /src/components/lazy-ad/lazy-ad.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/lazy-ad/lazy-ad.tsx -------------------------------------------------------------------------------- /src/components/lazy-img/lazy-img.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/lazy-img/lazy-img.scss -------------------------------------------------------------------------------- /src/components/lazy-img/lazy-img.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/lazy-img/lazy-img.tsx -------------------------------------------------------------------------------- /src/components/list-page/list-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/list-page/list-page.scss -------------------------------------------------------------------------------- /src/components/list-page/list-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/list-page/list-page.tsx -------------------------------------------------------------------------------- /src/components/main-page/main-page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/main-page/main-page.scss -------------------------------------------------------------------------------- /src/components/main-page/main-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/main-page/main-page.tsx -------------------------------------------------------------------------------- /src/components/routes-page/routes-page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/routes-page/routes-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/routes-page/routes-page.tsx -------------------------------------------------------------------------------- /src/components/share-button/share-button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/share-button/share-button.scss -------------------------------------------------------------------------------- /src/components/share-button/share-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/share-button/share-button.tsx -------------------------------------------------------------------------------- /src/components/stencil-route-link/stencil-route-link.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/stencil-route-link/stencil-route-link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/stencil-route-link/stencil-route-link.tsx -------------------------------------------------------------------------------- /src/components/stencil-route/stencil-route.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/stencil-route/stencil-route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/stencil-route/stencil-route.tsx -------------------------------------------------------------------------------- /src/components/stencil-router/stencil-router.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/stencil-router/stencil-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/components/stencil-router/stencil-router.tsx -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/src/index.html -------------------------------------------------------------------------------- /stencil.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/stencil.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/tsconfig.json -------------------------------------------------------------------------------- /workbox-cli-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/workbox-cli-config.js -------------------------------------------------------------------------------- /www/ads/ad.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/www/ads/ad.html -------------------------------------------------------------------------------- /www/build/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/www/build/app.js -------------------------------------------------------------------------------- /www/build/app.registry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/www/build/app.registry.json -------------------------------------------------------------------------------- /www/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/www/favicon.ico -------------------------------------------------------------------------------- /www/firebase-messaging-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/www/firebase-messaging-sw.js -------------------------------------------------------------------------------- /www/images/512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/www/images/512.png -------------------------------------------------------------------------------- /www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/www/index.html -------------------------------------------------------------------------------- /www/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/www/manifest.json -------------------------------------------------------------------------------- /www/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/www/sw.js -------------------------------------------------------------------------------- /www/workbox-sw.prod.v1.1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ionic-team/stencil-news/HEAD/www/workbox-sw.prod.v1.1.0.js --------------------------------------------------------------------------------