10 | The world is your oyster.
11 |
12 | If you get lost, the docs will be your guide.
13 |
14 |
15 |
--------------------------------------------------------------------------------
/src/pages/home/home.scss:
--------------------------------------------------------------------------------
1 | page-home {
2 |
3 | }
4 |
--------------------------------------------------------------------------------
/src/pages/home/home.ts:
--------------------------------------------------------------------------------
1 | import { Component } from '@angular/core';
2 | import { NavController } from 'ionic-angular';
3 |
4 | @Component({
5 | selector: 'page-home',
6 | templateUrl: 'home.html'
7 | })
8 | export class HomePage {
9 |
10 | constructor(public navCtrl: NavController) {
11 |
12 | }
13 |
14 | }
15 |
--------------------------------------------------------------------------------
/www/.gitkeep:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ionic-team/ionic2-starter-blank/a5f73af72b6c01f669a4fe138f3591856e951550/www/.gitkeep
--------------------------------------------------------------------------------
/www/manifest.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "My Ionic App",
3 | "short_name": "My Ionic App",
4 | "start_url": "index.html",
5 | "display": "standalone",
6 | "icons": [{
7 | "src": "icon.png",
8 | "sizes": "512x512",
9 | "type": "image/png"
10 | }]
11 | }
--------------------------------------------------------------------------------
/www/service-worker.js:
--------------------------------------------------------------------------------
1 | self.addEventListener('activate', function (event) {
2 |
3 | });
4 |
5 | self.addEventListener('fetch', function (event) {
6 |
7 | });
8 |
9 | self.addEventListener('push', function (event) {
10 |
11 | });
--------------------------------------------------------------------------------