├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── README.md ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── about │ │ ├── about.component.html │ │ ├── about.component.scss │ │ └── about.component.ts │ ├── app-header │ │ ├── app-header.component.html │ │ ├── app-header.component.scss │ │ └── app-header.component.ts │ ├── app.component.html │ ├── app.component.model.ts │ ├── app.component.scss │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routing.module.ts │ ├── application-state.service.ts │ ├── core.module.ts │ ├── frontpage │ │ ├── desktop │ │ │ ├── carousel.d.ts │ │ │ ├── desktop-frontpage.component.html │ │ │ ├── desktop-frontpage.component.model.ts │ │ │ ├── desktop-frontpage.component.scss │ │ │ └── desktop-frontpage.component.ts │ │ ├── homepage-item.ts │ │ └── mobile │ │ │ ├── mobile-frontpage.component.html │ │ │ ├── mobile-frontpage.component.model.ts │ │ │ ├── mobile-frontpage.component.scss │ │ │ └── mobile-frontpage.component.ts │ ├── product │ │ ├── product.component.desktop.html │ │ ├── product.component.desktop.scss │ │ ├── product.component.desktop.ts │ │ ├── product.component.mobile.html │ │ ├── product.component.mobile.scss │ │ ├── product.component.mobile.ts │ │ ├── product.component.model.ts │ │ └── product.component.ts │ └── user-profile │ │ ├── user-profile.component.desktop.html │ │ ├── user-profile.component.desktop.scss │ │ ├── user-profile.component.desktop.ts │ │ ├── user-profile.component.html │ │ ├── user-profile.component.mobile.html │ │ ├── user-profile.component.mobile.scss │ │ ├── user-profile.component.mobile.ts │ │ └── user-profile.component.ts ├── assets │ ├── .gitkeep │ ├── images │ │ ├── front-page │ │ │ ├── banana-guard.jpg │ │ │ ├── hoverboard.jpg │ │ │ ├── ipad.jpg │ │ │ ├── iphone.jpg │ │ │ └── xbox.jpg │ │ ├── product-1.jpg │ │ └── product-2.jpg │ └── styles │ │ └── constants.scss ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── tsconfig.json ├── tslint.json └── yarn.lock /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/README.md -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /src/app/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/about/about.component.html -------------------------------------------------------------------------------- /src/app/about/about.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/about/about.component.scss -------------------------------------------------------------------------------- /src/app/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/about/about.component.ts -------------------------------------------------------------------------------- /src/app/app-header/app-header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/app-header/app-header.component.html -------------------------------------------------------------------------------- /src/app/app-header/app-header.component.scss: -------------------------------------------------------------------------------- 1 | .logo { 2 | height: 30px; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /src/app/app-header/app-header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/app-header/app-header.component.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/app.component.model.ts -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/app.routing.module.ts -------------------------------------------------------------------------------- /src/app/application-state.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/application-state.service.ts -------------------------------------------------------------------------------- /src/app/core.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/core.module.ts -------------------------------------------------------------------------------- /src/app/frontpage/desktop/carousel.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/frontpage/desktop/carousel.d.ts -------------------------------------------------------------------------------- /src/app/frontpage/desktop/desktop-frontpage.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/frontpage/desktop/desktop-frontpage.component.html -------------------------------------------------------------------------------- /src/app/frontpage/desktop/desktop-frontpage.component.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/frontpage/desktop/desktop-frontpage.component.model.ts -------------------------------------------------------------------------------- /src/app/frontpage/desktop/desktop-frontpage.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/frontpage/desktop/desktop-frontpage.component.scss -------------------------------------------------------------------------------- /src/app/frontpage/desktop/desktop-frontpage.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/frontpage/desktop/desktop-frontpage.component.ts -------------------------------------------------------------------------------- /src/app/frontpage/homepage-item.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/frontpage/homepage-item.ts -------------------------------------------------------------------------------- /src/app/frontpage/mobile/mobile-frontpage.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/frontpage/mobile/mobile-frontpage.component.html -------------------------------------------------------------------------------- /src/app/frontpage/mobile/mobile-frontpage.component.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/frontpage/mobile/mobile-frontpage.component.model.ts -------------------------------------------------------------------------------- /src/app/frontpage/mobile/mobile-frontpage.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/frontpage/mobile/mobile-frontpage.component.scss -------------------------------------------------------------------------------- /src/app/frontpage/mobile/mobile-frontpage.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/frontpage/mobile/mobile-frontpage.component.ts -------------------------------------------------------------------------------- /src/app/product/product.component.desktop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/product/product.component.desktop.html -------------------------------------------------------------------------------- /src/app/product/product.component.desktop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/product/product.component.desktop.scss -------------------------------------------------------------------------------- /src/app/product/product.component.desktop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/product/product.component.desktop.ts -------------------------------------------------------------------------------- /src/app/product/product.component.mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/product/product.component.mobile.html -------------------------------------------------------------------------------- /src/app/product/product.component.mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/product/product.component.mobile.scss -------------------------------------------------------------------------------- /src/app/product/product.component.mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/product/product.component.mobile.ts -------------------------------------------------------------------------------- /src/app/product/product.component.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/product/product.component.model.ts -------------------------------------------------------------------------------- /src/app/product/product.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/product/product.component.ts -------------------------------------------------------------------------------- /src/app/user-profile/user-profile.component.desktop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/user-profile/user-profile.component.desktop.html -------------------------------------------------------------------------------- /src/app/user-profile/user-profile.component.desktop.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/user-profile/user-profile.component.desktop.scss -------------------------------------------------------------------------------- /src/app/user-profile/user-profile.component.desktop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/user-profile/user-profile.component.desktop.ts -------------------------------------------------------------------------------- /src/app/user-profile/user-profile.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/user-profile/user-profile.component.html -------------------------------------------------------------------------------- /src/app/user-profile/user-profile.component.mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/user-profile/user-profile.component.mobile.html -------------------------------------------------------------------------------- /src/app/user-profile/user-profile.component.mobile.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/user-profile/user-profile.component.mobile.scss -------------------------------------------------------------------------------- /src/app/user-profile/user-profile.component.mobile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/user-profile/user-profile.component.mobile.ts -------------------------------------------------------------------------------- /src/app/user-profile/user-profile.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/app/user-profile/user-profile.component.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/images/front-page/banana-guard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/assets/images/front-page/banana-guard.jpg -------------------------------------------------------------------------------- /src/assets/images/front-page/hoverboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/assets/images/front-page/hoverboard.jpg -------------------------------------------------------------------------------- /src/assets/images/front-page/ipad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/assets/images/front-page/ipad.jpg -------------------------------------------------------------------------------- /src/assets/images/front-page/iphone.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/assets/images/front-page/iphone.jpg -------------------------------------------------------------------------------- /src/assets/images/front-page/xbox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/assets/images/front-page/xbox.jpg -------------------------------------------------------------------------------- /src/assets/images/product-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/assets/images/product-1.jpg -------------------------------------------------------------------------------- /src/assets/images/product-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/assets/images/product-2.jpg -------------------------------------------------------------------------------- /src/assets/styles/constants.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/assets/styles/constants.scss -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yosigolan/angular-multi-view/HEAD/yarn.lock --------------------------------------------------------------------------------