├── .gitignore ├── .htaccess ├── 404.html ├── CNAME ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── footer.html ├── header.html ├── modules │ ├── center-search.html │ └── shared-id-search.html └── partners.html ├── _layouts ├── default.html ├── embed.html ├── home.html └── page.html ├── about.md ├── crossdomain.xml ├── css └── style.scss ├── embed ├── center-search.md └── shared-id-search.md ├── favicon.ico ├── humans.txt ├── img ├── .gitignore ├── banners │ ├── doctors.jpg │ ├── power.jpg │ ├── sanitation.jpg │ └── tagline.jpg ├── c4a.png ├── c4k_logo.png ├── favicon.jpg ├── logo_1.png ├── logo_2.png ├── logo_3.png ├── logos │ ├── c4a.png │ ├── c4gh.png │ ├── c4k.png │ ├── elog.png │ ├── gtv_sm.png │ ├── hha.png │ ├── hivos.png │ ├── icfj.png │ ├── odekro.png │ ├── oi.png │ ├── osisa.png │ ├── wb.jpg │ ├── wb.png │ ├── wbg.png │ └── wbi.png ├── mountains-old.png ├── mountains.jpg ├── mountains.png ├── mountains2.png ├── people6.png └── social │ ├── email.png │ ├── facebook.png │ ├── fb.png │ ├── googleplus.png │ ├── gp.png │ ├── share.png │ ├── tw.png │ └── twitter.png ├── index.html ├── js ├── gottovote-rci.js ├── main.js ├── plugins.js └── reg_centres.json ├── logo_3.png └── robots.txt /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | 4 | *.DS_Store -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/.htaccess -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/404.html -------------------------------------------------------------------------------- /CNAME: -------------------------------------------------------------------------------- 1 | kenya.gottovote.cc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/modules/center-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/_includes/modules/center-search.html -------------------------------------------------------------------------------- /_includes/modules/shared-id-search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/_includes/modules/shared-id-search.html -------------------------------------------------------------------------------- /_includes/partners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/_includes/partners.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/embed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/_layouts/embed.html -------------------------------------------------------------------------------- /_layouts/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/_layouts/home.html -------------------------------------------------------------------------------- /_layouts/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/_layouts/page.html -------------------------------------------------------------------------------- /about.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/about.md -------------------------------------------------------------------------------- /crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/crossdomain.xml -------------------------------------------------------------------------------- /css/style.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/css/style.scss -------------------------------------------------------------------------------- /embed/center-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/embed/center-search.md -------------------------------------------------------------------------------- /embed/shared-id-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/embed/shared-id-search.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/favicon.ico -------------------------------------------------------------------------------- /humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/humans.txt -------------------------------------------------------------------------------- /img/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /img/banners/doctors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/banners/doctors.jpg -------------------------------------------------------------------------------- /img/banners/power.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/banners/power.jpg -------------------------------------------------------------------------------- /img/banners/sanitation.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/banners/sanitation.jpg -------------------------------------------------------------------------------- /img/banners/tagline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/banners/tagline.jpg -------------------------------------------------------------------------------- /img/c4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/c4a.png -------------------------------------------------------------------------------- /img/c4k_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/c4k_logo.png -------------------------------------------------------------------------------- /img/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/favicon.jpg -------------------------------------------------------------------------------- /img/logo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logo_1.png -------------------------------------------------------------------------------- /img/logo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logo_2.png -------------------------------------------------------------------------------- /img/logo_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logo_3.png -------------------------------------------------------------------------------- /img/logos/c4a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/c4a.png -------------------------------------------------------------------------------- /img/logos/c4gh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/c4gh.png -------------------------------------------------------------------------------- /img/logos/c4k.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/c4k.png -------------------------------------------------------------------------------- /img/logos/elog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/elog.png -------------------------------------------------------------------------------- /img/logos/gtv_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/gtv_sm.png -------------------------------------------------------------------------------- /img/logos/hha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/hha.png -------------------------------------------------------------------------------- /img/logos/hivos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/hivos.png -------------------------------------------------------------------------------- /img/logos/icfj.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/icfj.png -------------------------------------------------------------------------------- /img/logos/odekro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/odekro.png -------------------------------------------------------------------------------- /img/logos/oi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/oi.png -------------------------------------------------------------------------------- /img/logos/osisa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/osisa.png -------------------------------------------------------------------------------- /img/logos/wb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/wb.jpg -------------------------------------------------------------------------------- /img/logos/wb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/wb.png -------------------------------------------------------------------------------- /img/logos/wbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/wbg.png -------------------------------------------------------------------------------- /img/logos/wbi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/logos/wbi.png -------------------------------------------------------------------------------- /img/mountains-old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/mountains-old.png -------------------------------------------------------------------------------- /img/mountains.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/mountains.jpg -------------------------------------------------------------------------------- /img/mountains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/mountains.png -------------------------------------------------------------------------------- /img/mountains2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/mountains2.png -------------------------------------------------------------------------------- /img/people6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/people6.png -------------------------------------------------------------------------------- /img/social/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/social/email.png -------------------------------------------------------------------------------- /img/social/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/social/facebook.png -------------------------------------------------------------------------------- /img/social/fb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/social/fb.png -------------------------------------------------------------------------------- /img/social/googleplus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/social/googleplus.png -------------------------------------------------------------------------------- /img/social/gp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/social/gp.png -------------------------------------------------------------------------------- /img/social/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/social/share.png -------------------------------------------------------------------------------- /img/social/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/social/tw.png -------------------------------------------------------------------------------- /img/social/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/img/social/twitter.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/index.html -------------------------------------------------------------------------------- /js/gottovote-rci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/js/gottovote-rci.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/js/main.js -------------------------------------------------------------------------------- /js/plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/js/plugins.js -------------------------------------------------------------------------------- /js/reg_centres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/js/reg_centres.json -------------------------------------------------------------------------------- /logo_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CodeForAfrica/GotToVote/HEAD/logo_3.png -------------------------------------------------------------------------------- /robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | --------------------------------------------------------------------------------