Skip to content
This repository was archived by the owner on Apr 2, 2018. It is now read-only.

Commit 56c405a

Browse files
committed
chore(): update app layout
1 parent 100e69c commit 56c405a

File tree

14 files changed

+10
-11
lines changed

14 files changed

+10
-11
lines changed

www/app/app.core.scss renamed to app/app.core.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
// By default each design mode includes these shared imports.
88
// App Shared Sass variables belong in app.variables.scss.
99

10-
@import "hello-ionic/hello-ionic";
10+
@import "pages/hello-ionic/hello-ionic";
1111

12-
@import "item-details/item-details";
12+
@import "pages/item-details/item-details";
File renamed without changes.

www/app/app.ios.scss renamed to app/app.ios.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// --------------------------------------------------
1717
// Custom App variables must be declared before importing Ionic.
1818
// Ionic will use its default values when a custom variable isn't provided.
19-
@import "../../node_modules/ionic-framework/ionic.ios";
19+
@import "ionic.ios";
2020

2121

2222
// App Shared Sass

www/app/app.js renamed to app/app.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
import {App, IonicApp, Platform} from 'ionic/ionic';
22

3-
import {HelloIonicPage} from './hello-ionic/hello-ionic';
4-
import {ListPage} from './list/list';
3+
import {HelloIonicPage} from './pages/hello-ionic/hello-ionic';
4+
import {ListPage} from './pages/list/list';
55

66
@App({
7-
templateUrl: 'app/app.html'
7+
templateUrl: 'build/app.html'
88
})
9-
109
class MyApp {
1110
constructor(app: IonicApp, platform: Platform) {
1211

www/app/app.md.scss renamed to app/app.md.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
// --------------------------------------------------
1717
// Custom App variables must be declared before importing Ionic.
1818
// Ionic will use its default values when a custom variable isn't provided.
19-
@import "../../node_modules/ionic-framework/ionic.md";
19+
@import "ionic.md";
2020

2121

2222
// App Shared Sass
File renamed without changes.
File renamed without changes.

www/app/hello-ionic/hello-ionic.js renamed to app/pages/hello-ionic/hello-ionic.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import {Page, NavController} from 'ionic/ionic';
22

33
@Page({
4-
templateUrl: 'app/hello-ionic/hello-ionic.html'
4+
templateUrl: 'build/pages/hello-ionic/hello-ionic.html'
55
})
66
export class HelloIonicPage {
77
constructor(nav: NavController) {
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)