├── .cfignore ├── .gitignore ├── .nvmrc ├── Gemfile ├── Gemfile.lock ├── README.md ├── _config.yml ├── _data └── navigation.yml ├── _includes ├── banner.html ├── footer.html ├── head.html ├── header.html ├── scripts.html └── sidenav.html ├── _layouts └── base.html ├── assets ├── img │ ├── image1.png │ ├── image2.png │ ├── image3.png │ └── image4.png ├── report │ ├── Report to the President on IT Modernization - Draft.pdf │ ├── Report to the President on IT Modernization - Final.pdf │ └── Report to the President on IT Modernization.pdf └── sass │ └── main.scss ├── favicon.ico ├── gulpfile.js ├── package.json └── pages └── report ├── 00-introduction-to-the-report.md ├── 01-preface.md ├── 02-executive-summary.md ├── 03-network-modernization.md ├── 04-shared-services.md ├── 05-conclusions.md ├── 06-appendix-a.md ├── 07-appendix-b.md ├── 08-appendix-c.md ├── 09-appendix-d.md ├── 10-appendix-e.md ├── 11-appendix-f.md └── 12-appendix-g.md /.cfignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 6.2.2 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll' 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/_config.yml -------------------------------------------------------------------------------- /_data/navigation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/_data/navigation.yml -------------------------------------------------------------------------------- /_includes/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/_includes/banner.html -------------------------------------------------------------------------------- /_includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/_includes/footer.html -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/_includes/head.html -------------------------------------------------------------------------------- /_includes/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/_includes/header.html -------------------------------------------------------------------------------- /_includes/scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/_includes/scripts.html -------------------------------------------------------------------------------- /_includes/sidenav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/_includes/sidenav.html -------------------------------------------------------------------------------- /_layouts/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/_layouts/base.html -------------------------------------------------------------------------------- /assets/img/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/assets/img/image1.png -------------------------------------------------------------------------------- /assets/img/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/assets/img/image2.png -------------------------------------------------------------------------------- /assets/img/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/assets/img/image3.png -------------------------------------------------------------------------------- /assets/img/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/assets/img/image4.png -------------------------------------------------------------------------------- /assets/report/Report to the President on IT Modernization - Draft.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/assets/report/Report to the President on IT Modernization - Draft.pdf -------------------------------------------------------------------------------- /assets/report/Report to the President on IT Modernization - Final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/assets/report/Report to the President on IT Modernization - Final.pdf -------------------------------------------------------------------------------- /assets/report/Report to the President on IT Modernization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/assets/report/Report to the President on IT Modernization.pdf -------------------------------------------------------------------------------- /assets/sass/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/assets/sass/main.scss -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/favicon.ico -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/package.json -------------------------------------------------------------------------------- /pages/report/00-introduction-to-the-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/00-introduction-to-the-report.md -------------------------------------------------------------------------------- /pages/report/01-preface.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/01-preface.md -------------------------------------------------------------------------------- /pages/report/02-executive-summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/02-executive-summary.md -------------------------------------------------------------------------------- /pages/report/03-network-modernization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/03-network-modernization.md -------------------------------------------------------------------------------- /pages/report/04-shared-services.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/04-shared-services.md -------------------------------------------------------------------------------- /pages/report/05-conclusions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/05-conclusions.md -------------------------------------------------------------------------------- /pages/report/06-appendix-a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/06-appendix-a.md -------------------------------------------------------------------------------- /pages/report/07-appendix-b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/07-appendix-b.md -------------------------------------------------------------------------------- /pages/report/08-appendix-c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/08-appendix-c.md -------------------------------------------------------------------------------- /pages/report/09-appendix-d.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/09-appendix-d.md -------------------------------------------------------------------------------- /pages/report/10-appendix-e.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/10-appendix-e.md -------------------------------------------------------------------------------- /pages/report/11-appendix-f.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/11-appendix-f.md -------------------------------------------------------------------------------- /pages/report/12-appendix-g.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GSA/modernization/HEAD/pages/report/12-appendix-g.md --------------------------------------------------------------------------------