├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── browserslist ├── capacitor.config.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── ionic.config.json ├── karma.conf.js ├── package.json ├── resources ├── icon.png ├── resources │ ├── icon.png │ └── splash.png └── splash.png ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── article │ │ ├── article-routing.module.ts │ │ ├── article.module.ts │ │ ├── article.page.html │ │ ├── article.page.scss │ │ ├── article.page.spec.ts │ │ └── article.page.ts │ ├── tab1 │ │ ├── tab1-routing.module.ts │ │ ├── tab1.module.ts │ │ ├── tab1.page.html │ │ ├── tab1.page.scss │ │ ├── tab1.page.spec.ts │ │ └── tab1.page.ts │ ├── tab2 │ │ ├── tab2-routing.module.ts │ │ ├── tab2.module.ts │ │ ├── tab2.page.html │ │ ├── tab2.page.scss │ │ ├── tab2.page.spec.ts │ │ └── tab2.page.ts │ ├── tab3 │ │ ├── tab3-routing.module.ts │ │ ├── tab3.module.ts │ │ ├── tab3.page.html │ │ ├── tab3.page.scss │ │ ├── tab3.page.spec.ts │ │ └── tab3.page.ts │ ├── tab4 │ │ ├── tab4-routing.module.ts │ │ ├── tab4.module.ts │ │ ├── tab4.page.html │ │ ├── tab4.page.scss │ │ ├── tab4.page.spec.ts │ │ └── tab4.page.ts │ └── tabs │ │ ├── tabs-routing.module.ts │ │ ├── tabs.module.ts │ │ ├── tabs.page.html │ │ ├── tabs.page.scss │ │ ├── tabs.page.spec.ts │ │ └── tabs.page.ts ├── assets │ ├── icon │ │ └── favicon.png │ ├── img │ │ ├── img_1.png │ │ ├── img_2.png │ │ ├── img_3.png │ │ └── img_4.png │ └── shapes.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── global.scss ├── index.html ├── main.ts ├── polyfills.ts ├── sass │ ├── app.scss │ ├── fonts.scss │ ├── sass │ │ ├── app.scss │ │ ├── fonts.scss │ │ ├── scrollHorizontal.scss │ │ └── variables.override.scss │ ├── scrollHorizontal.scss │ └── variables.override.scss ├── test.ts ├── theme │ └── variables.scss └── zone-flags.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/browserslist -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/ionic.config.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/package.json -------------------------------------------------------------------------------- /resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/resources/icon.png -------------------------------------------------------------------------------- /resources/resources/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/resources/resources/icon.png -------------------------------------------------------------------------------- /resources/resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/resources/resources/splash.png -------------------------------------------------------------------------------- /resources/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/resources/splash.png -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/article/article-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/article/article-routing.module.ts -------------------------------------------------------------------------------- /src/app/article/article.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/article/article.module.ts -------------------------------------------------------------------------------- /src/app/article/article.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/article/article.page.html -------------------------------------------------------------------------------- /src/app/article/article.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/article/article.page.scss -------------------------------------------------------------------------------- /src/app/article/article.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/article/article.page.spec.ts -------------------------------------------------------------------------------- /src/app/article/article.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/article/article.page.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab1/tab1-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab1/tab1.module.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab1/tab1.page.html -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.scss: -------------------------------------------------------------------------------- 1 | .link-item-small { 2 | margin: 12px 0; 3 | } 4 | -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab1/tab1.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab1/tab1.page.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab2/tab2-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab2/tab2.module.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab2/tab2.page.html -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab2/tab2.page.scss -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab2/tab2.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab2/tab2.page.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab3/tab3-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab3/tab3.module.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab3/tab3.page.html -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab3/tab3.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab3/tab3.page.ts -------------------------------------------------------------------------------- /src/app/tab4/tab4-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab4/tab4-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab4/tab4.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab4/tab4.module.ts -------------------------------------------------------------------------------- /src/app/tab4/tab4.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab4/tab4.page.html -------------------------------------------------------------------------------- /src/app/tab4/tab4.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/tab4/tab4.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab4/tab4.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab4/tab4.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tab4/tab4.page.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tabs/tabs-routing.module.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tabs/tabs.module.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tabs/tabs.page.html -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tabs/tabs.page.spec.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/app/tabs/tabs.page.ts -------------------------------------------------------------------------------- /src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /src/assets/img/img_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/assets/img/img_1.png -------------------------------------------------------------------------------- /src/assets/img/img_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/assets/img/img_2.png -------------------------------------------------------------------------------- /src/assets/img/img_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/assets/img/img_3.png -------------------------------------------------------------------------------- /src/assets/img/img_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/assets/img/img_4.png -------------------------------------------------------------------------------- /src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/assets/shapes.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/sass/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/sass/app.scss -------------------------------------------------------------------------------- /src/sass/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/sass/fonts.scss -------------------------------------------------------------------------------- /src/sass/sass/app.scss: -------------------------------------------------------------------------------- 1 | :root { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /src/sass/sass/fonts.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/sass/sass/fonts.scss -------------------------------------------------------------------------------- /src/sass/sass/scrollHorizontal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/sass/sass/scrollHorizontal.scss -------------------------------------------------------------------------------- /src/sass/sass/variables.override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/sass/sass/variables.override.scss -------------------------------------------------------------------------------- /src/sass/scrollHorizontal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/sass/scrollHorizontal.scss -------------------------------------------------------------------------------- /src/sass/variables.override.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/sass/variables.override.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/src/zone-flags.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrhieu/ionic-cnn/HEAD/tslint.json --------------------------------------------------------------------------------