├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── chaptermenu.html ├── css │ ├── bootstrap.min.css │ └── main.css ├── header.html └── in-chapter-links.html ├── _layouts ├── chapter.html ├── default.html └── header.html ├── chapters ├── part-0.md ├── part-1-chapter-0.md ├── part-1-chapter-01.md ├── part-1-chapter-02.md ├── part-1-chapter-03.md ├── part-1-chapter-04.md ├── part-1-chapter-05.md ├── part-2-chapter-0.md ├── part-2-chapter-06.md ├── part-2-chapter-07.md ├── part-2-chapter-08.md ├── part-2-chapter-09.md ├── part-2-chapter-10.md ├── part-3-chapter-0.md ├── part-3-chapter-11.md ├── part-3-chapter-12.md ├── part-3-chapter-13.md ├── part-3-chapter-14.md ├── part-4-chapter-0.md ├── part-4-chapter-15.md ├── part-4-chapter-16.md ├── part-4-chapter-17.md ├── part-4-chapter-18.md ├── part-5-chapter-0.md ├── part-5-chapter-19.md ├── part-5-chapter-20.md ├── part-5-chapter-21.md ├── part-5-chapter-22.md └── part-5-chapter-99.md ├── css ├── combined.css └── mobile.css ├── favicon.ico ├── fonts ├── glyphicons-halflings-regular.eot ├── glyphicons-halflings-regular.svg ├── glyphicons-halflings-regular.ttf ├── glyphicons-halflings-regular.woff └── myfonts │ ├── fonts.css │ └── webfonts │ ├── 289640_0_0.eot │ ├── 289640_0_0.ttf │ ├── 289640_0_0.woff │ ├── 289640_1_0.eot │ ├── 289640_1_0.ttf │ ├── 289640_1_0.woff │ ├── 289640_2_0.eot │ ├── 289640_2_0.ttf │ ├── 289640_2_0.woff │ ├── 289640_3_0.eot │ ├── 289640_3_0.ttf │ ├── 289640_3_0.woff │ ├── 289640_4_0.eot │ ├── 289640_4_0.ttf │ ├── 289640_4_0.woff │ ├── 289640_5_0.eot │ ├── 289640_5_0.ttf │ └── 289640_5_0.woff ├── images ├── USoutlinewhite.png ├── about_book_icon.png ├── amazon_book_icon.png ├── authors │ ├── abhi.png │ ├── alissa.jpg │ ├── alissa.png │ ├── beth.jpg │ ├── beth.png │ ├── bethn.jpeg │ ├── bethn.png │ ├── bibiana.png │ ├── bracken.jpg │ ├── bracken.png │ ├── brett.png │ ├── chui.jpg │ ├── chui.png │ ├── cyd.png │ ├── cydharrell.jpeg │ ├── daniel.png │ ├── diana.jpg │ ├── diana.png │ ├── elliott.jpeg │ ├── elliott.png │ ├── emer.png │ ├── ericg.png │ ├── feldman.jpeg │ ├── feldman.png │ ├── greg.jpg │ ├── greg.png │ ├── jeff.jpeg │ ├── jeff.png │ ├── jessica.jpg │ ├── jessica.png │ ├── joel.jpg │ ├── joel.png │ ├── johnf.jpeg │ ├── johnf.png │ ├── kenw.jpeg │ ├── kenw.png │ ├── mark.png │ ├── mike.png │ ├── mikea.png │ ├── rachel.jpg │ ├── rachel.png │ ├── ryan.png │ ├── spike.jpg │ ├── stevev.jpeg │ ├── stevev.png │ ├── theresa.jpg │ ├── theresa.png │ └── tim.png ├── beyondtransparency-large.png ├── beyondtransparency-small.png ├── btn-arrow.png ├── city.png ├── cloud.png ├── contributors.png ├── donate_icon.png ├── menu_icon_sprite.png ├── pdf_icon.png ├── quote.png └── twitter.png ├── index.html ├── js ├── bootstrap.min.js ├── jquery-scrollspy.js ├── jquery.scrollTo.min.js └── main.js ├── pdf └── BeyondTransparency.pdf └── toc.html /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | _raw/ 3 | .DS_Store 4 | .s3cfg 5 | _run.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/_config.yml -------------------------------------------------------------------------------- /_includes/chaptermenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/_includes/chaptermenu.html -------------------------------------------------------------------------------- /_includes/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/_includes/css/bootstrap.min.css -------------------------------------------------------------------------------- /_includes/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/_includes/css/main.css -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/in-chapter-links.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/_includes/in-chapter-links.html -------------------------------------------------------------------------------- /_layouts/chapter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/_layouts/chapter.html -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/_layouts/default.html -------------------------------------------------------------------------------- /_layouts/header.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chapters/part-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-0.md -------------------------------------------------------------------------------- /chapters/part-1-chapter-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-1-chapter-0.md -------------------------------------------------------------------------------- /chapters/part-1-chapter-01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-1-chapter-01.md -------------------------------------------------------------------------------- /chapters/part-1-chapter-02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-1-chapter-02.md -------------------------------------------------------------------------------- /chapters/part-1-chapter-03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-1-chapter-03.md -------------------------------------------------------------------------------- /chapters/part-1-chapter-04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-1-chapter-04.md -------------------------------------------------------------------------------- /chapters/part-1-chapter-05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-1-chapter-05.md -------------------------------------------------------------------------------- /chapters/part-2-chapter-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-2-chapter-0.md -------------------------------------------------------------------------------- /chapters/part-2-chapter-06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-2-chapter-06.md -------------------------------------------------------------------------------- /chapters/part-2-chapter-07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-2-chapter-07.md -------------------------------------------------------------------------------- /chapters/part-2-chapter-08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-2-chapter-08.md -------------------------------------------------------------------------------- /chapters/part-2-chapter-09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-2-chapter-09.md -------------------------------------------------------------------------------- /chapters/part-2-chapter-10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-2-chapter-10.md -------------------------------------------------------------------------------- /chapters/part-3-chapter-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-3-chapter-0.md -------------------------------------------------------------------------------- /chapters/part-3-chapter-11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-3-chapter-11.md -------------------------------------------------------------------------------- /chapters/part-3-chapter-12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-3-chapter-12.md -------------------------------------------------------------------------------- /chapters/part-3-chapter-13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-3-chapter-13.md -------------------------------------------------------------------------------- /chapters/part-3-chapter-14.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-3-chapter-14.md -------------------------------------------------------------------------------- /chapters/part-4-chapter-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-4-chapter-0.md -------------------------------------------------------------------------------- /chapters/part-4-chapter-15.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-4-chapter-15.md -------------------------------------------------------------------------------- /chapters/part-4-chapter-16.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-4-chapter-16.md -------------------------------------------------------------------------------- /chapters/part-4-chapter-17.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-4-chapter-17.md -------------------------------------------------------------------------------- /chapters/part-4-chapter-18.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-4-chapter-18.md -------------------------------------------------------------------------------- /chapters/part-5-chapter-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-5-chapter-0.md -------------------------------------------------------------------------------- /chapters/part-5-chapter-19.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-5-chapter-19.md -------------------------------------------------------------------------------- /chapters/part-5-chapter-20.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-5-chapter-20.md -------------------------------------------------------------------------------- /chapters/part-5-chapter-21.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-5-chapter-21.md -------------------------------------------------------------------------------- /chapters/part-5-chapter-22.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-5-chapter-22.md -------------------------------------------------------------------------------- /chapters/part-5-chapter-99.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/chapters/part-5-chapter-99.md -------------------------------------------------------------------------------- /css/combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/css/combined.css -------------------------------------------------------------------------------- /css/mobile.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/css/mobile.css -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /fonts/myfonts/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/fonts.css -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_0_0.eot -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_0_0.ttf -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_0_0.woff -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_1_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_1_0.eot -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_1_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_1_0.ttf -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_1_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_1_0.woff -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_2_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_2_0.eot -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_2_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_2_0.ttf -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_2_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_2_0.woff -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_3_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_3_0.eot -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_3_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_3_0.ttf -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_3_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_3_0.woff -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_4_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_4_0.eot -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_4_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_4_0.ttf -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_4_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_4_0.woff -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_5_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_5_0.eot -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_5_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_5_0.ttf -------------------------------------------------------------------------------- /fonts/myfonts/webfonts/289640_5_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/fonts/myfonts/webfonts/289640_5_0.woff -------------------------------------------------------------------------------- /images/USoutlinewhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/USoutlinewhite.png -------------------------------------------------------------------------------- /images/about_book_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/about_book_icon.png -------------------------------------------------------------------------------- /images/amazon_book_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/amazon_book_icon.png -------------------------------------------------------------------------------- /images/authors/abhi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/abhi.png -------------------------------------------------------------------------------- /images/authors/alissa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/alissa.jpg -------------------------------------------------------------------------------- /images/authors/alissa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/alissa.png -------------------------------------------------------------------------------- /images/authors/beth.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/beth.jpg -------------------------------------------------------------------------------- /images/authors/beth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/beth.png -------------------------------------------------------------------------------- /images/authors/bethn.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/bethn.jpeg -------------------------------------------------------------------------------- /images/authors/bethn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/bethn.png -------------------------------------------------------------------------------- /images/authors/bibiana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/bibiana.png -------------------------------------------------------------------------------- /images/authors/bracken.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/bracken.jpg -------------------------------------------------------------------------------- /images/authors/bracken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/bracken.png -------------------------------------------------------------------------------- /images/authors/brett.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/brett.png -------------------------------------------------------------------------------- /images/authors/chui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/chui.jpg -------------------------------------------------------------------------------- /images/authors/chui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/chui.png -------------------------------------------------------------------------------- /images/authors/cyd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/cyd.png -------------------------------------------------------------------------------- /images/authors/cydharrell.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/cydharrell.jpeg -------------------------------------------------------------------------------- /images/authors/daniel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/daniel.png -------------------------------------------------------------------------------- /images/authors/diana.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/diana.jpg -------------------------------------------------------------------------------- /images/authors/diana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/diana.png -------------------------------------------------------------------------------- /images/authors/elliott.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/elliott.jpeg -------------------------------------------------------------------------------- /images/authors/elliott.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/elliott.png -------------------------------------------------------------------------------- /images/authors/emer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/emer.png -------------------------------------------------------------------------------- /images/authors/ericg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/ericg.png -------------------------------------------------------------------------------- /images/authors/feldman.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/feldman.jpeg -------------------------------------------------------------------------------- /images/authors/feldman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/feldman.png -------------------------------------------------------------------------------- /images/authors/greg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/greg.jpg -------------------------------------------------------------------------------- /images/authors/greg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/greg.png -------------------------------------------------------------------------------- /images/authors/jeff.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/jeff.jpeg -------------------------------------------------------------------------------- /images/authors/jeff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/jeff.png -------------------------------------------------------------------------------- /images/authors/jessica.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/jessica.jpg -------------------------------------------------------------------------------- /images/authors/jessica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/jessica.png -------------------------------------------------------------------------------- /images/authors/joel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/joel.jpg -------------------------------------------------------------------------------- /images/authors/joel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/joel.png -------------------------------------------------------------------------------- /images/authors/johnf.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/johnf.jpeg -------------------------------------------------------------------------------- /images/authors/johnf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/johnf.png -------------------------------------------------------------------------------- /images/authors/kenw.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/kenw.jpeg -------------------------------------------------------------------------------- /images/authors/kenw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/kenw.png -------------------------------------------------------------------------------- /images/authors/mark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/mark.png -------------------------------------------------------------------------------- /images/authors/mike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/mike.png -------------------------------------------------------------------------------- /images/authors/mikea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/mikea.png -------------------------------------------------------------------------------- /images/authors/rachel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/rachel.jpg -------------------------------------------------------------------------------- /images/authors/rachel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/rachel.png -------------------------------------------------------------------------------- /images/authors/ryan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/ryan.png -------------------------------------------------------------------------------- /images/authors/spike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/spike.jpg -------------------------------------------------------------------------------- /images/authors/stevev.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/stevev.jpeg -------------------------------------------------------------------------------- /images/authors/stevev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/stevev.png -------------------------------------------------------------------------------- /images/authors/theresa.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/theresa.jpg -------------------------------------------------------------------------------- /images/authors/theresa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/theresa.png -------------------------------------------------------------------------------- /images/authors/tim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/authors/tim.png -------------------------------------------------------------------------------- /images/beyondtransparency-large.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/beyondtransparency-large.png -------------------------------------------------------------------------------- /images/beyondtransparency-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/beyondtransparency-small.png -------------------------------------------------------------------------------- /images/btn-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/btn-arrow.png -------------------------------------------------------------------------------- /images/city.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/city.png -------------------------------------------------------------------------------- /images/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/cloud.png -------------------------------------------------------------------------------- /images/contributors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/contributors.png -------------------------------------------------------------------------------- /images/donate_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/donate_icon.png -------------------------------------------------------------------------------- /images/menu_icon_sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/menu_icon_sprite.png -------------------------------------------------------------------------------- /images/pdf_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/pdf_icon.png -------------------------------------------------------------------------------- /images/quote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/quote.png -------------------------------------------------------------------------------- /images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/images/twitter.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/index.html -------------------------------------------------------------------------------- /js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/js/bootstrap.min.js -------------------------------------------------------------------------------- /js/jquery-scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/js/jquery-scrollspy.js -------------------------------------------------------------------------------- /js/jquery.scrollTo.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/js/jquery.scrollTo.min.js -------------------------------------------------------------------------------- /js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/js/main.js -------------------------------------------------------------------------------- /pdf/BeyondTransparency.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/pdf/BeyondTransparency.pdf -------------------------------------------------------------------------------- /toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforamerica/beyondtransparency/HEAD/toc.html --------------------------------------------------------------------------------