├── .DS_Store ├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── design_assets ├── Billboard-F4T.pdf ├── Billboards.png ├── Concept Presentation.pdf ├── Door Hanger.png └── logos │ ├── food4thought_logo.ai │ ├── food4thought_logo.svg │ ├── hungerfreeOK_logo.ai │ ├── hungerfreeOK_logo.svgz │ ├── okdepted_logo.ai │ └── okdepted_logo.svgz ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── karma.conf.js ├── package.json ├── prodServer.js ├── protractor.conf.js ├── server.js ├── src ├── app │ ├── about │ │ ├── about.component.css │ │ ├── about.component.html │ │ ├── about.component.spec.ts │ │ └── about.component.ts │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── dialogbox │ │ ├── dialogbox.component.css │ │ ├── dialogbox.component.html │ │ ├── dialogbox.component.spec.ts │ │ └── dialogbox.component.ts │ ├── directory │ │ ├── directory.component.css │ │ ├── directory.component.html │ │ ├── directory.component.spec.ts │ │ └── directory.component.ts │ ├── main │ │ ├── main.component.css │ │ ├── main.component.html │ │ ├── main.component.spec.ts │ │ └── main.component.ts │ ├── map.service.spec.ts │ ├── map.service.ts │ ├── material.module.ts │ ├── models │ │ └── uniFeature.ts │ ├── navigation │ │ ├── navigation.component.css │ │ ├── navigation.component.html │ │ ├── navigation.component.spec.ts │ │ └── navigation.component.ts │ └── styles.css ├── assets │ ├── .gitkeep │ ├── blueMarker.svg │ ├── codefortulsa.png │ ├── favicon.png │ ├── graph1.png │ ├── hungerfreelogo.svg │ ├── i18n │ │ ├── en.json │ │ └── es.json │ ├── kids.jpg │ ├── mapScreen.png │ ├── okdeptedu.svg │ ├── orangeMarker.svg │ ├── script.js │ ├── style.json │ ├── temp_sites.js │ └── u-construct.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.png ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json ├── typekit.css └── typings.d.ts ├── tsconfig.json └── tslint.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/angular.json -------------------------------------------------------------------------------- /design_assets/Billboard-F4T.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/design_assets/Billboard-F4T.pdf -------------------------------------------------------------------------------- /design_assets/Billboards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/design_assets/Billboards.png -------------------------------------------------------------------------------- /design_assets/Concept Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/design_assets/Concept Presentation.pdf -------------------------------------------------------------------------------- /design_assets/Door Hanger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/design_assets/Door Hanger.png -------------------------------------------------------------------------------- /design_assets/logos/food4thought_logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/design_assets/logos/food4thought_logo.ai -------------------------------------------------------------------------------- /design_assets/logos/food4thought_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/design_assets/logos/food4thought_logo.svg -------------------------------------------------------------------------------- /design_assets/logos/hungerfreeOK_logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/design_assets/logos/hungerfreeOK_logo.ai -------------------------------------------------------------------------------- /design_assets/logos/hungerfreeOK_logo.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/design_assets/logos/hungerfreeOK_logo.svgz -------------------------------------------------------------------------------- /design_assets/logos/okdepted_logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/design_assets/logos/okdepted_logo.ai -------------------------------------------------------------------------------- /design_assets/logos/okdepted_logo.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/design_assets/logos/okdepted_logo.svgz -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/package.json -------------------------------------------------------------------------------- /prodServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/prodServer.js -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/server.js -------------------------------------------------------------------------------- /src/app/about/about.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/about/about.component.css -------------------------------------------------------------------------------- /src/app/about/about.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/about/about.component.html -------------------------------------------------------------------------------- /src/app/about/about.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/about/about.component.spec.ts -------------------------------------------------------------------------------- /src/app/about/about.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/about/about.component.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/dialogbox/dialogbox.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/dialogbox/dialogbox.component.css -------------------------------------------------------------------------------- /src/app/dialogbox/dialogbox.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/dialogbox/dialogbox.component.html -------------------------------------------------------------------------------- /src/app/dialogbox/dialogbox.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/dialogbox/dialogbox.component.spec.ts -------------------------------------------------------------------------------- /src/app/dialogbox/dialogbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/dialogbox/dialogbox.component.ts -------------------------------------------------------------------------------- /src/app/directory/directory.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/directory/directory.component.css -------------------------------------------------------------------------------- /src/app/directory/directory.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/directory/directory.component.html -------------------------------------------------------------------------------- /src/app/directory/directory.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/directory/directory.component.spec.ts -------------------------------------------------------------------------------- /src/app/directory/directory.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/directory/directory.component.ts -------------------------------------------------------------------------------- /src/app/main/main.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/main/main.component.css -------------------------------------------------------------------------------- /src/app/main/main.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/main/main.component.html -------------------------------------------------------------------------------- /src/app/main/main.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/main/main.component.spec.ts -------------------------------------------------------------------------------- /src/app/main/main.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/main/main.component.ts -------------------------------------------------------------------------------- /src/app/map.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/map.service.spec.ts -------------------------------------------------------------------------------- /src/app/map.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/map.service.ts -------------------------------------------------------------------------------- /src/app/material.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/material.module.ts -------------------------------------------------------------------------------- /src/app/models/uniFeature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/models/uniFeature.ts -------------------------------------------------------------------------------- /src/app/navigation/navigation.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/navigation/navigation.component.css -------------------------------------------------------------------------------- /src/app/navigation/navigation.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/navigation/navigation.component.html -------------------------------------------------------------------------------- /src/app/navigation/navigation.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/navigation/navigation.component.spec.ts -------------------------------------------------------------------------------- /src/app/navigation/navigation.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/navigation/navigation.component.ts -------------------------------------------------------------------------------- /src/app/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/app/styles.css -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/blueMarker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/blueMarker.svg -------------------------------------------------------------------------------- /src/assets/codefortulsa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/codefortulsa.png -------------------------------------------------------------------------------- /src/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/favicon.png -------------------------------------------------------------------------------- /src/assets/graph1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/graph1.png -------------------------------------------------------------------------------- /src/assets/hungerfreelogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/hungerfreelogo.svg -------------------------------------------------------------------------------- /src/assets/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/i18n/en.json -------------------------------------------------------------------------------- /src/assets/i18n/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/i18n/es.json -------------------------------------------------------------------------------- /src/assets/kids.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/kids.jpg -------------------------------------------------------------------------------- /src/assets/mapScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/mapScreen.png -------------------------------------------------------------------------------- /src/assets/okdeptedu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/okdeptedu.svg -------------------------------------------------------------------------------- /src/assets/orangeMarker.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/orangeMarker.svg -------------------------------------------------------------------------------- /src/assets/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/script.js -------------------------------------------------------------------------------- /src/assets/style.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/style.json -------------------------------------------------------------------------------- /src/assets/temp_sites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/temp_sites.js -------------------------------------------------------------------------------- /src/assets/u-construct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/assets/u-construct.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/environments/environment.prod.ts -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/favicon.png -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/typekit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/typekit.css -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codefortulsa/food4thought/HEAD/tslint.json --------------------------------------------------------------------------------