├── .gitignore ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── analytics.html ├── apps.html ├── apps │ ├── dodgy-dr.html │ ├── nearest-facilities.html │ └── nhif.html ├── footer.html ├── footer_js.html ├── head.html ├── modals.html └── navbar.html ├── _layouts ├── default.html ├── module.html └── nhif-faq.html ├── css ├── custom.css └── jquery.autocomplete.css ├── dodgy-dr.html ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── glyphicons-halflings-regular.woff2 ├── img ├── GitHub-Mark-32px.png ├── android-icon.png ├── bcoumnbg.png ├── bootstrap-docs-readme.png ├── bootstrap-mdo-sfmoma-01.jpg ├── bootstrap-mdo-sfmoma-02.jpg ├── bootstrap-mdo-sfmoma-03.jpg ├── bs-docs-bootstrap-features.png ├── bs-docs-masthead-pattern.png ├── bs-docs-responsive-illustrations.png ├── bs-docs-twitter-github.png ├── c4k_logo.png ├── cfk-logo.png ├── ckan.jpeg ├── data.png ├── facebook.png ├── favicon.png ├── github.png ├── glyphicons-halflings-white.png ├── glyphicons-halflings.png ├── grid-baseline-20px.png ├── health.png ├── indicator.gif ├── less-logo-large.png ├── logo-big.png ├── logo-old.png ├── logo.png ├── preloader.gif ├── responsive-illustrations.png ├── rss.png ├── sms.png ├── star_reports.png ├── topbar.jpg ├── twitter.png └── wallpaper.png ├── index.html ├── js ├── custom.js ├── healthtools.js ├── ie10-viewport-bug-workaround.js ├── jquery.autocomplete.js ├── story.js └── utilities.js ├── nearest-facilities.html ├── nhif-faq.html ├── nhif.html └── story.html /.gitignore: -------------------------------------------------------------------------------- 1 | _site/* 2 | 3 | *.pyc 4 | .vscode 5 | -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | health.the-star.co.ke -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_includes/analytics.html -------------------------------------------------------------------------------- /_includes/apps.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_includes/apps.html -------------------------------------------------------------------------------- /_includes/apps/dodgy-dr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_includes/apps/dodgy-dr.html -------------------------------------------------------------------------------- /_includes/apps/nearest-facilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_includes/apps/nearest-facilities.html -------------------------------------------------------------------------------- /_includes/apps/nhif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_includes/apps/nhif.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/footer_js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_includes/footer_js.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/modals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_includes/modals.html -------------------------------------------------------------------------------- /_includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_includes/navbar.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/module.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_layouts/module.html -------------------------------------------------------------------------------- /_layouts/nhif-faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/_layouts/nhif-faq.html -------------------------------------------------------------------------------- /css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/css/custom.css -------------------------------------------------------------------------------- /css/jquery.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/css/jquery.autocomplete.css -------------------------------------------------------------------------------- /dodgy-dr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/dodgy-dr.html -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /img/GitHub-Mark-32px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/GitHub-Mark-32px.png -------------------------------------------------------------------------------- /img/android-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/android-icon.png -------------------------------------------------------------------------------- /img/bcoumnbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/bcoumnbg.png -------------------------------------------------------------------------------- /img/bootstrap-docs-readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/bootstrap-docs-readme.png -------------------------------------------------------------------------------- /img/bootstrap-mdo-sfmoma-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/bootstrap-mdo-sfmoma-01.jpg -------------------------------------------------------------------------------- /img/bootstrap-mdo-sfmoma-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/bootstrap-mdo-sfmoma-02.jpg -------------------------------------------------------------------------------- /img/bootstrap-mdo-sfmoma-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/bootstrap-mdo-sfmoma-03.jpg -------------------------------------------------------------------------------- /img/bs-docs-bootstrap-features.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/bs-docs-bootstrap-features.png -------------------------------------------------------------------------------- /img/bs-docs-masthead-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/bs-docs-masthead-pattern.png -------------------------------------------------------------------------------- /img/bs-docs-responsive-illustrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/bs-docs-responsive-illustrations.png -------------------------------------------------------------------------------- /img/bs-docs-twitter-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/bs-docs-twitter-github.png -------------------------------------------------------------------------------- /img/c4k_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/c4k_logo.png -------------------------------------------------------------------------------- /img/cfk-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/cfk-logo.png -------------------------------------------------------------------------------- /img/ckan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/ckan.jpeg -------------------------------------------------------------------------------- /img/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/data.png -------------------------------------------------------------------------------- /img/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/facebook.png -------------------------------------------------------------------------------- /img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/favicon.png -------------------------------------------------------------------------------- /img/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/github.png -------------------------------------------------------------------------------- /img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /img/grid-baseline-20px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/grid-baseline-20px.png -------------------------------------------------------------------------------- /img/health.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/health.png -------------------------------------------------------------------------------- /img/indicator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/indicator.gif -------------------------------------------------------------------------------- /img/less-logo-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/less-logo-large.png -------------------------------------------------------------------------------- /img/logo-big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/logo-big.png -------------------------------------------------------------------------------- /img/logo-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/logo-old.png -------------------------------------------------------------------------------- /img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/logo.png -------------------------------------------------------------------------------- /img/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/preloader.gif -------------------------------------------------------------------------------- /img/responsive-illustrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/responsive-illustrations.png -------------------------------------------------------------------------------- /img/rss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/rss.png -------------------------------------------------------------------------------- /img/sms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/sms.png -------------------------------------------------------------------------------- /img/star_reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/star_reports.png -------------------------------------------------------------------------------- /img/topbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/topbar.jpg -------------------------------------------------------------------------------- /img/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/twitter.png -------------------------------------------------------------------------------- /img/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/img/wallpaper.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/index.html -------------------------------------------------------------------------------- /js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/js/custom.js -------------------------------------------------------------------------------- /js/healthtools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/js/healthtools.js -------------------------------------------------------------------------------- /js/ie10-viewport-bug-workaround.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/js/ie10-viewport-bug-workaround.js -------------------------------------------------------------------------------- /js/jquery.autocomplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/js/jquery.autocomplete.js -------------------------------------------------------------------------------- /js/story.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/js/story.js -------------------------------------------------------------------------------- /js/utilities.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/js/utilities.js -------------------------------------------------------------------------------- /nearest-facilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/nearest-facilities.html -------------------------------------------------------------------------------- /nhif-faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/nhif-faq.html -------------------------------------------------------------------------------- /nhif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/nhif.html -------------------------------------------------------------------------------- /story.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/HealthTools.KE-theStarHealth/HEAD/story.html --------------------------------------------------------------------------------