├── .eslintrc ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── _templates ├── component │ └── new │ │ ├── component.ejs.t │ │ ├── controller.ejs.t │ │ ├── html.ejs.t │ │ ├── module.ejs.t │ │ ├── scss.ejs.t │ │ └── test.spec.ejs.t └── service │ └── new │ ├── module.ejs.t │ ├── service.ejs.t │ └── test.spec.ejs.t ├── app ├── app.component.js ├── app.js ├── components │ ├── components.js │ ├── navbar │ │ ├── navbar.component.js │ │ ├── navbar.controller.js │ │ ├── navbar.js │ │ └── navbar.scss │ └── page-home │ │ ├── page-home.component.js │ │ ├── page-home.controller.js │ │ ├── page-home.js │ │ └── page-home.scss └── services │ ├── navigation.service.js │ └── services.js ├── assets ├── css │ └── styles.css ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon.ico │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ ├── mstile-70x70.png │ ├── safari-pinned-tab.svg │ └── site.webmanifest └── img │ ├── icon-angularjs.svg │ ├── icon-github.png │ ├── icon-ng-hotrod-dark.svg │ └── icon-ng-hotrod-light.svg ├── index.html ├── index.js └── package.json /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/README.md -------------------------------------------------------------------------------- /_templates/component/new/component.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/_templates/component/new/component.ejs.t -------------------------------------------------------------------------------- /_templates/component/new/controller.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/_templates/component/new/controller.ejs.t -------------------------------------------------------------------------------- /_templates/component/new/html.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/_templates/component/new/html.ejs.t -------------------------------------------------------------------------------- /_templates/component/new/module.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/_templates/component/new/module.ejs.t -------------------------------------------------------------------------------- /_templates/component/new/scss.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/_templates/component/new/scss.ejs.t -------------------------------------------------------------------------------- /_templates/component/new/test.spec.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/_templates/component/new/test.spec.ejs.t -------------------------------------------------------------------------------- /_templates/service/new/module.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/_templates/service/new/module.ejs.t -------------------------------------------------------------------------------- /_templates/service/new/service.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/_templates/service/new/service.ejs.t -------------------------------------------------------------------------------- /_templates/service/new/test.spec.ejs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/_templates/service/new/test.spec.ejs.t -------------------------------------------------------------------------------- /app/app.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/app.component.js -------------------------------------------------------------------------------- /app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/app.js -------------------------------------------------------------------------------- /app/components/components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/components/components.js -------------------------------------------------------------------------------- /app/components/navbar/navbar.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/components/navbar/navbar.component.js -------------------------------------------------------------------------------- /app/components/navbar/navbar.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/components/navbar/navbar.controller.js -------------------------------------------------------------------------------- /app/components/navbar/navbar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/components/navbar/navbar.js -------------------------------------------------------------------------------- /app/components/navbar/navbar.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/components/navbar/navbar.scss -------------------------------------------------------------------------------- /app/components/page-home/page-home.component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/components/page-home/page-home.component.js -------------------------------------------------------------------------------- /app/components/page-home/page-home.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/components/page-home/page-home.controller.js -------------------------------------------------------------------------------- /app/components/page-home/page-home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/components/page-home/page-home.js -------------------------------------------------------------------------------- /app/components/page-home/page-home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/components/page-home/page-home.scss -------------------------------------------------------------------------------- /app/services/navigation.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/services/navigation.service.js -------------------------------------------------------------------------------- /app/services/services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/app/services/services.js -------------------------------------------------------------------------------- /assets/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/css/styles.css -------------------------------------------------------------------------------- /assets/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /assets/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /assets/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /assets/favicon/browserconfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/browserconfig.xml -------------------------------------------------------------------------------- /assets/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /assets/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /assets/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/favicon.ico -------------------------------------------------------------------------------- /assets/favicon/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/mstile-144x144.png -------------------------------------------------------------------------------- /assets/favicon/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/mstile-150x150.png -------------------------------------------------------------------------------- /assets/favicon/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/mstile-310x150.png -------------------------------------------------------------------------------- /assets/favicon/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/mstile-310x310.png -------------------------------------------------------------------------------- /assets/favicon/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/mstile-70x70.png -------------------------------------------------------------------------------- /assets/favicon/safari-pinned-tab.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/safari-pinned-tab.svg -------------------------------------------------------------------------------- /assets/favicon/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/favicon/site.webmanifest -------------------------------------------------------------------------------- /assets/img/icon-angularjs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/img/icon-angularjs.svg -------------------------------------------------------------------------------- /assets/img/icon-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/img/icon-github.png -------------------------------------------------------------------------------- /assets/img/icon-ng-hotrod-dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/img/icon-ng-hotrod-dark.svg -------------------------------------------------------------------------------- /assets/img/icon-ng-hotrod-light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/assets/img/icon-ng-hotrod-light.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fyodorio/ng-hotrod/HEAD/package.json --------------------------------------------------------------------------------