├── .angular-cli.json ├── .editorconfig ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── docker-compose.yml ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── img ├── code-splitting.png ├── grid.png └── nativescript-ionic.png ├── karma.conf.js ├── nativescript ├── .gitignore ├── App_Resources │ ├── Android │ │ ├── AndroidManifest.xml │ │ ├── app.gradle │ │ ├── drawable-hdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-ldpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-mdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-nodpi │ │ │ └── splash_screen.xml │ │ ├── drawable-xhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-xxhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── drawable-xxxhdpi │ │ │ ├── background.png │ │ │ ├── icon.png │ │ │ └── logo.png │ │ ├── values-v21 │ │ │ ├── colors.xml │ │ │ └── styles.xml │ │ └── values │ │ │ ├── colors.xml │ │ │ └── styles.xml │ └── iOS │ │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon-29.png │ │ │ ├── icon-29@2x.png │ │ │ ├── icon-29@3x.png │ │ │ ├── icon-40.png │ │ │ ├── icon-40@2x.png │ │ │ ├── icon-40@3x.png │ │ │ ├── icon-50.png │ │ │ ├── icon-50@2x.png │ │ │ ├── icon-57.png │ │ │ ├── icon-57@2x.png │ │ │ ├── icon-60@2x.png │ │ │ ├── icon-60@3x.png │ │ │ ├── icon-72.png │ │ │ ├── icon-72@2x.png │ │ │ ├── icon-76.png │ │ │ ├── icon-76@2x.png │ │ │ └── icon-83.5@2x.png │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default-667h@2x.png │ │ │ ├── Default-736h@3x.png │ │ │ ├── Default-Landscape.png │ │ │ ├── Default-Landscape@2x.png │ │ │ ├── Default-Landscape@3x.png │ │ │ ├── Default-Portrait.png │ │ │ ├── Default-Portrait@2x.png │ │ │ ├── Default.png │ │ │ └── Default@2x.png │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ └── LaunchScreen-AspectFill@2x.png │ │ └── LaunchScreen.Center.imageset │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen-Center.png │ │ │ └── LaunchScreen-Center@2x.png │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── build.xcconfig ├── app │ ├── vendor-platform.android.ts │ ├── vendor-platform.ios.ts │ └── vendor.ts ├── gulpfile.js ├── package.json ├── src │ ├── _app-common.scss │ ├── app.android.css │ ├── app.android.scss │ ├── app.ios.css │ ├── app.ios.scss │ ├── fonts │ ├── main.aot.ts │ ├── main.ts │ └── package.json ├── tsconfig.json └── webpack.config.js ├── nginx ├── README.md └── conf.d │ ├── default.conf │ ├── http-redirect.conf │ └── misc.conf ├── package.json ├── protractor.conf.js ├── proxy.conf.json ├── src ├── app │ ├── about │ │ ├── about.common.ts │ │ ├── about.module.tns.ts │ │ ├── about.module.ts │ │ ├── about.routes.ts │ │ └── components │ │ │ └── about │ │ │ ├── about.component.common.ts │ │ │ ├── about.component.html │ │ │ ├── about.component.scss │ │ │ ├── about.component.spec.ts │ │ │ ├── about.component.tns.html │ │ │ ├── about.component.tns.ts │ │ │ └── about.component.ts │ ├── app-routing.module.tns.ts │ ├── app-routing.module.ts │ ├── app.common.ts │ ├── app.component.html │ ├── app.component.tns.html │ ├── app.component.ts │ ├── app.module.tns.ts │ ├── app.module.ts │ ├── app.routes.tns.ts │ ├── app.routes.ts │ ├── common │ │ ├── index.ts │ │ └── utils │ │ │ ├── Config.ts │ │ │ ├── index.ts │ │ │ ├── router-module.tns.ts │ │ │ └── router-module.ts │ ├── grid │ │ ├── components │ │ │ └── grid │ │ │ │ ├── grid.component.html │ │ │ │ ├── grid.component.scss │ │ │ │ ├── grid.component.spec.ts │ │ │ │ ├── grid.component.tns.html │ │ │ │ └── grid.component.ts │ │ ├── grid.common.ts │ │ ├── grid.module.tns.ts │ │ ├── grid.module.ts │ │ └── grid.routes.ts │ ├── home │ │ ├── components │ │ │ └── home │ │ │ │ ├── home.component.html │ │ │ │ ├── home.component.scss │ │ │ │ ├── home.component.spec.ts │ │ │ │ ├── home.component.tns.html │ │ │ │ ├── home.component.tns.ts │ │ │ │ └── home.component.ts │ │ ├── home.common.ts │ │ ├── home.module.tns.ts │ │ ├── home.module.ts │ │ └── home.routes.ts │ ├── providers │ │ └── api │ │ │ └── api.ts │ └── shared │ │ ├── index.ts │ │ ├── shared.module.tns.ts │ │ └── shared.module.ts ├── assets │ ├── .gitkeep │ └── i18n │ │ └── en.json ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── fonts │ ├── .gitkeep │ ├── Ionicons.ttf │ ├── ionicons-icons.scss │ ├── ionicons-variables.scss │ ├── ionicons.eot │ ├── ionicons.scss │ ├── ionicons.svg │ ├── ionicons.woff │ ├── ionicons.woff2 │ ├── noto-sans-bold.ttf │ ├── noto-sans-bold.woff │ ├── noto-sans-regular.ttf │ ├── noto-sans-regular.woff │ ├── noto-sans.scss │ ├── roboto-bold.ttf │ ├── roboto-bold.woff │ ├── roboto-bold.woff2 │ ├── roboto-light.ttf │ ├── roboto-light.woff │ ├── roboto-light.woff2 │ ├── roboto-medium.ttf │ ├── roboto-medium.woff │ ├── roboto-medium.woff2 │ ├── roboto-regular.ttf │ ├── roboto-regular.woff │ ├── roboto-regular.woff2 │ └── roboto.scss ├── index.html ├── ionicons-icons.scss ├── ionicons-variables.scss ├── main.aot.tns.ts ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── typings.d.ts ├── symlink.js ├── tsconfig.json └── tslint.json /.angular-cli.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/.angular-cli.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /img/code-splitting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/img/code-splitting.png -------------------------------------------------------------------------------- /img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/img/grid.png -------------------------------------------------------------------------------- /img/nativescript-ionic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/img/nativescript-ionic.png -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/karma.conf.js -------------------------------------------------------------------------------- /nativescript/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/.gitignore -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/AndroidManifest.xml -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-hdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-hdpi/background.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-ldpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-ldpi/background.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-mdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-mdpi/background.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-nodpi/splash_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-nodpi/splash_screen.xml -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-xhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-xhdpi/background.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-xxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-xxhdpi/background.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-xxxhdpi/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-xxxhdpi/background.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/drawable-xxxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/drawable-xxxhdpi/logo.png -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/values-v21/colors.xml -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/values-v21/styles.xml -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/values/colors.xml -------------------------------------------------------------------------------- /nativescript/App_Resources/Android/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/Android/values/styles.xml -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-29@3x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-40@3x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-50@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-57@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-60@3x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-72@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-76@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/AppIcon.appiconset/icon-83.5@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-667h@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-736h@3x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Landscape@3x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default-Portrait@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/Contents.json -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.AspectFill.imageset/LaunchScreen-AspectFill@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/Contents.json -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Assets.xcassets/LaunchScreen.Center.imageset/LaunchScreen-Center@2x.png -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /nativescript/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /nativescript/app/vendor-platform.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/app/vendor-platform.android.ts -------------------------------------------------------------------------------- /nativescript/app/vendor-platform.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/app/vendor-platform.ios.ts -------------------------------------------------------------------------------- /nativescript/app/vendor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/app/vendor.ts -------------------------------------------------------------------------------- /nativescript/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/gulpfile.js -------------------------------------------------------------------------------- /nativescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/package.json -------------------------------------------------------------------------------- /nativescript/src/_app-common.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/src/_app-common.scss -------------------------------------------------------------------------------- /nativescript/src/app.android.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nativescript/src/app.android.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/src/app.android.scss -------------------------------------------------------------------------------- /nativescript/src/app.ios.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nativescript/src/app.ios.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/src/app.ios.scss -------------------------------------------------------------------------------- /nativescript/src/fonts: -------------------------------------------------------------------------------- 1 | /Users/jdnichollsc/dev/proyecto26/nativescript-ionic-template/src/fonts -------------------------------------------------------------------------------- /nativescript/src/main.aot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/src/main.aot.ts -------------------------------------------------------------------------------- /nativescript/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/src/main.ts -------------------------------------------------------------------------------- /nativescript/src/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/src/package.json -------------------------------------------------------------------------------- /nativescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/tsconfig.json -------------------------------------------------------------------------------- /nativescript/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nativescript/webpack.config.js -------------------------------------------------------------------------------- /nginx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nginx/README.md -------------------------------------------------------------------------------- /nginx/conf.d/default.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nginx/conf.d/default.conf -------------------------------------------------------------------------------- /nginx/conf.d/http-redirect.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen *:80; 3 | return 301 https://$host$request_uri; 4 | } -------------------------------------------------------------------------------- /nginx/conf.d/misc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/nginx/conf.d/misc.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /proxy.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/proxy.conf.json -------------------------------------------------------------------------------- /src/app/about/about.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/about.common.ts -------------------------------------------------------------------------------- /src/app/about/about.module.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/about.module.tns.ts -------------------------------------------------------------------------------- /src/app/about/about.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/about.module.ts -------------------------------------------------------------------------------- /src/app/about/about.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/about.routes.ts -------------------------------------------------------------------------------- /src/app/about/components/about/about.component.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/components/about/about.component.common.ts -------------------------------------------------------------------------------- /src/app/about/components/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/components/about/about.component.html -------------------------------------------------------------------------------- /src/app/about/components/about/about.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/components/about/about.component.scss -------------------------------------------------------------------------------- /src/app/about/components/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/components/about/about.component.spec.ts -------------------------------------------------------------------------------- /src/app/about/components/about/about.component.tns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/components/about/about.component.tns.html -------------------------------------------------------------------------------- /src/app/about/components/about/about.component.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/components/about/about.component.tns.ts -------------------------------------------------------------------------------- /src/app/about/components/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/about/components/about/about.component.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/app-routing.module.tns.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/app.common.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.tns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/app.component.tns.html -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/app.module.tns.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/app.routes.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/app.routes.tns.ts -------------------------------------------------------------------------------- /src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/app.routes.ts -------------------------------------------------------------------------------- /src/app/common/index.ts: -------------------------------------------------------------------------------- 1 | export * from './utils/index'; 2 | -------------------------------------------------------------------------------- /src/app/common/utils/Config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/common/utils/Config.ts -------------------------------------------------------------------------------- /src/app/common/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/common/utils/index.ts -------------------------------------------------------------------------------- /src/app/common/utils/router-module.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/common/utils/router-module.tns.ts -------------------------------------------------------------------------------- /src/app/common/utils/router-module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/common/utils/router-module.ts -------------------------------------------------------------------------------- /src/app/grid/components/grid/grid.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/grid/components/grid/grid.component.html -------------------------------------------------------------------------------- /src/app/grid/components/grid/grid.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/grid/components/grid/grid.component.scss -------------------------------------------------------------------------------- /src/app/grid/components/grid/grid.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/grid/components/grid/grid.component.spec.ts -------------------------------------------------------------------------------- /src/app/grid/components/grid/grid.component.tns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/grid/components/grid/grid.component.tns.html -------------------------------------------------------------------------------- /src/app/grid/components/grid/grid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/grid/components/grid/grid.component.ts -------------------------------------------------------------------------------- /src/app/grid/grid.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/grid/grid.common.ts -------------------------------------------------------------------------------- /src/app/grid/grid.module.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/grid/grid.module.tns.ts -------------------------------------------------------------------------------- /src/app/grid/grid.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/grid/grid.module.ts -------------------------------------------------------------------------------- /src/app/grid/grid.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/grid/grid.routes.ts -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/home/components/home/home.component.html -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/home/components/home/home.component.scss -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/home/components/home/home.component.spec.ts -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.tns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/home/components/home/home.component.tns.html -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/home/components/home/home.component.tns.ts -------------------------------------------------------------------------------- /src/app/home/components/home/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/home/components/home/home.component.ts -------------------------------------------------------------------------------- /src/app/home/home.common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/home/home.common.ts -------------------------------------------------------------------------------- /src/app/home/home.module.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/home/home.module.tns.ts -------------------------------------------------------------------------------- /src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/home/home.module.ts -------------------------------------------------------------------------------- /src/app/home/home.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/home/home.routes.ts -------------------------------------------------------------------------------- /src/app/providers/api/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/providers/api/api.ts -------------------------------------------------------------------------------- /src/app/shared/index.ts: -------------------------------------------------------------------------------- 1 | export * from './shared.module'; 2 | -------------------------------------------------------------------------------- /src/app/shared/shared.module.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/shared/shared.module.tns.ts -------------------------------------------------------------------------------- /src/app/shared/shared.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/app/shared/shared.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/fonts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /src/fonts/ionicons-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/ionicons-icons.scss -------------------------------------------------------------------------------- /src/fonts/ionicons-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/ionicons-variables.scss -------------------------------------------------------------------------------- /src/fonts/ionicons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/ionicons.eot -------------------------------------------------------------------------------- /src/fonts/ionicons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/ionicons.scss -------------------------------------------------------------------------------- /src/fonts/ionicons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/ionicons.svg -------------------------------------------------------------------------------- /src/fonts/ionicons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/ionicons.woff -------------------------------------------------------------------------------- /src/fonts/ionicons.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/ionicons.woff2 -------------------------------------------------------------------------------- /src/fonts/noto-sans-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/noto-sans-bold.ttf -------------------------------------------------------------------------------- /src/fonts/noto-sans-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/noto-sans-bold.woff -------------------------------------------------------------------------------- /src/fonts/noto-sans-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/noto-sans-regular.ttf -------------------------------------------------------------------------------- /src/fonts/noto-sans-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/noto-sans-regular.woff -------------------------------------------------------------------------------- /src/fonts/noto-sans.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/noto-sans.scss -------------------------------------------------------------------------------- /src/fonts/roboto-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-bold.ttf -------------------------------------------------------------------------------- /src/fonts/roboto-bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-bold.woff -------------------------------------------------------------------------------- /src/fonts/roboto-bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-bold.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-light.ttf -------------------------------------------------------------------------------- /src/fonts/roboto-light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-light.woff -------------------------------------------------------------------------------- /src/fonts/roboto-light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-light.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-medium.ttf -------------------------------------------------------------------------------- /src/fonts/roboto-medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-medium.woff -------------------------------------------------------------------------------- /src/fonts/roboto-medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-medium.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-regular.ttf -------------------------------------------------------------------------------- /src/fonts/roboto-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-regular.woff -------------------------------------------------------------------------------- /src/fonts/roboto-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto-regular.woff2 -------------------------------------------------------------------------------- /src/fonts/roboto.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/fonts/roboto.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/index.html -------------------------------------------------------------------------------- /src/ionicons-icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/ionicons-icons.scss -------------------------------------------------------------------------------- /src/ionicons-variables.scss: -------------------------------------------------------------------------------- 1 | @import 'fonts/ionicons-variables.scss'; -------------------------------------------------------------------------------- /src/main.aot.tns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/main.aot.tns.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /symlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/symlink.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proyecto26/nativescript-ionic-template/HEAD/tslint.json --------------------------------------------------------------------------------