├── .gitattributes ├── .github └── workflows │ └── master_as-cdt-pub-migr-gocode-ww-p-001.yml ├── .gitignore ├── README.md ├── assets ├── 900px-Flag_of_California.svg.png ├── Map_of_California_outline.svg ├── avatar-reverse.png ├── avatar-reverse.sketch ├── avatar.png ├── avatar.sketch ├── favicon.png ├── favicon.sketch ├── header-eventbrite.png ├── header-eventbrite.sketch ├── header-facebook.png ├── header-facebook.sketch ├── header-medium.png ├── header-newsletter.png ├── header-newsletter.sketch ├── header-twitter.png ├── header-twitter.sketch ├── header-youtube.png ├── header-youtube.sketch ├── hero.sketch ├── logo-reverse.png ├── logo-reverse.sketch ├── logo-text.png ├── logo-text.sketch ├── logo.png ├── logo.sketch ├── logo.svg ├── poster.png └── poster.sketch ├── css └── style.css ├── img ├── favicon │ ├── android-icon-144x144.png │ ├── android-icon-192x192.png │ ├── android-icon-36x36.png │ ├── android-icon-48x48.png │ ├── android-icon-72x72.png │ ├── android-icon-96x96.png │ ├── apple-icon-114x114.png │ ├── apple-icon-120x120.png │ ├── apple-icon-144x144.png │ ├── apple-icon-152x152.png │ ├── apple-icon-180x180.png │ ├── apple-icon-57x57.png │ ├── apple-icon-60x60.png │ ├── apple-icon-72x72.png │ ├── apple-icon-76x76.png │ ├── apple-icon-precomposed.png │ ├── apple-icon.png │ ├── browserconfig.xml │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── manifest.json │ ├── ms-icon-144x144.png │ ├── ms-icon-150x150.png │ ├── ms-icon-310x310.png │ └── ms-icon-70x70.png ├── flag.png ├── hero.png ├── logo-reverse.png ├── logo-text.png ├── logos │ ├── cdt.png │ └── govops.png ├── thumbnail.png └── watch-us-work.png └── index.html /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.github/workflows/master_as-cdt-pub-migr-gocode-ww-p-001.yml: -------------------------------------------------------------------------------- 1 | # Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy 2 | # More GitHub Actions for Azure: https://github.com/Azure/actions 3 | 4 | name: Build and deploy ASP.Net Core app to Azure Web App - as-cdt-pub-migr-gocode-ww-p-001 5 | 6 | on: 7 | push: 8 | branches: 9 | - master 10 | 11 | jobs: 12 | build-and-deploy: 13 | runs-on: windows-latest 14 | 15 | steps: 16 | - uses: actions/checkout@master 17 | 18 | - name: Set up .NET Core 19 | uses: actions/setup-dotnet@v1 20 | with: 21 | dotnet-version: '3.1.102' 22 | 23 | - name: Build with dotnet 24 | run: dotnet build --configuration Release 25 | 26 | - name: dotnet publish 27 | run: dotnet publish -c Release -o ${{env.DOTNET_ROOT}}/myapp 28 | 29 | - name: Deploy to Azure Web App 30 | uses: azure/webapps-deploy@v2 31 | with: 32 | app-name: 'as-cdt-pub-migr-gocode-ww-p-001' 33 | slot-name: 'production' 34 | publish-profile: ${{ secrets.AzureAppService_PublishProfile_9170d3734478478292fc248a3e5c2d80 }} 35 | package: ${{env.DOTNET_ROOT}}/myapp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # IDE Configs 9 | .idea 10 | 11 | # Recycle Bin used on file shares 12 | $RECYCLE.BIN/ 13 | 14 | # Windows Installer files 15 | *.cab 16 | *.msi 17 | *.msm 18 | *.msp 19 | 20 | # Windows shortcuts 21 | *.lnk 22 | 23 | # ========================= 24 | # Operating System Files 25 | # ========================= 26 | 27 | # OSX 28 | # ========================= 29 | 30 | .DS_Store 31 | .AppleDouble 32 | .LSOverride 33 | 34 | # Thumbnails 35 | ._* 36 | 37 | # Files that might appear in the root of a volume 38 | .DocumentRevisions-V100 39 | .fseventsd 40 | .Spotlight-V100 41 | .TemporaryItems 42 | .Trashes 43 | .VolumeIcon.icns 44 | 45 | # Directories potentially created on remote AFP share 46 | .AppleDB 47 | .AppleDesktop 48 | Network Trash Folder 49 | Temporary Items 50 | .apdisk 51 | SyncToy_dc7c780e-a1a5-4cf2-8ef3-b035c84cecbe.dat 52 | 53 | 54 | #add 'node_modules' to .gitignore file 55 | 56 | git rm -r --cached node_modules 57 | git commit -m 'Remove the now ignored directory node_modules' 58 | git push origin master 59 | /node_modules 60 | /.vs 61 | *.dat 62 | /StateTemplate.sln 63 | /website.publishproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Code California 2 | 3 | Code California unites, educates and inspires California state agencies and leaders to build a foundation for amazing digital government services through an open, decentralized approach to code and organizational collaboration. 4 | 5 | * [Playbook](https://codecagov-playbook.readthedocs.io/en/latest/README/) 6 | * [Website](https://go.code.ca.gov/) 7 | * [Deck](https://docs.google.com/presentation/d/1WovA76e1LMJX9VNuyMx-oGQruvDG-UzdmpYtjKE6NuA/edit?usp=sharing) 8 | * [Working doc](https://docs.google.com/document/d/1hXYzV_KW49epVuj9EuUGP1hNNARRMf_yVi1Uz5XX_oI/edit?usp=sharing) 9 | * [Project board](https://github.com/cagov/codecagov/projects/1) 10 | * [Reports](https://docs.google.com/document/d/1lPb_j5MkOkVzv96oQKDtjJI6Lphqv9GIn0mGd9ae71w/edit?usp=sharing) 11 | -------------------------------------------------------------------------------- /assets/900px-Flag_of_California.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/900px-Flag_of_California.svg.png -------------------------------------------------------------------------------- /assets/Map_of_California_outline.svg: -------------------------------------------------------------------------------- 1 | 2 | 20 | 22 | 23 | 25 | image/svg+xml 26 | 28 | 29 | 30 | 31 | 33 | 40 | 41 | 60 | 62 | 64 | 67 | 70 | 73 | 76 | 79 | 82 | 85 | 88 | 91 | 94 | 97 | 100 | 103 | 106 | 109 | 112 | 115 | 118 | 121 | 124 | 127 | 130 | 133 | 136 | 139 | 142 | 145 | 148 | 151 | 152 | 153 | 161 | 162 | -------------------------------------------------------------------------------- /assets/avatar-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/avatar-reverse.png -------------------------------------------------------------------------------- /assets/avatar-reverse.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/avatar-reverse.sketch -------------------------------------------------------------------------------- /assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/avatar.png -------------------------------------------------------------------------------- /assets/avatar.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/avatar.sketch -------------------------------------------------------------------------------- /assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/favicon.png -------------------------------------------------------------------------------- /assets/favicon.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/favicon.sketch -------------------------------------------------------------------------------- /assets/header-eventbrite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-eventbrite.png -------------------------------------------------------------------------------- /assets/header-eventbrite.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-eventbrite.sketch -------------------------------------------------------------------------------- /assets/header-facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-facebook.png -------------------------------------------------------------------------------- /assets/header-facebook.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-facebook.sketch -------------------------------------------------------------------------------- /assets/header-medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-medium.png -------------------------------------------------------------------------------- /assets/header-newsletter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-newsletter.png -------------------------------------------------------------------------------- /assets/header-newsletter.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-newsletter.sketch -------------------------------------------------------------------------------- /assets/header-twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-twitter.png -------------------------------------------------------------------------------- /assets/header-twitter.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-twitter.sketch -------------------------------------------------------------------------------- /assets/header-youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-youtube.png -------------------------------------------------------------------------------- /assets/header-youtube.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/header-youtube.sketch -------------------------------------------------------------------------------- /assets/hero.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/hero.sketch -------------------------------------------------------------------------------- /assets/logo-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/logo-reverse.png -------------------------------------------------------------------------------- /assets/logo-reverse.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/logo-reverse.sketch -------------------------------------------------------------------------------- /assets/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/logo-text.png -------------------------------------------------------------------------------- /assets/logo-text.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/logo-text.sketch -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/logo.png -------------------------------------------------------------------------------- /assets/logo.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/logo.sketch -------------------------------------------------------------------------------- /assets/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | logo 2 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 23 | 24 | -------------------------------------------------------------------------------- /assets/poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/poster.png -------------------------------------------------------------------------------- /assets/poster.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/assets/poster.sketch -------------------------------------------------------------------------------- /css/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #212121; 3 | font-family: 'Source Sans Pro', sans-serif; 4 | font-size: 17px; 5 | } 6 | img { 7 | max-width: 100%; 8 | height: auto; 9 | } 10 | h1, h2, h3, h4, h5, h6 { 11 | font-family: 'Source Sans Pro', sans-serif; 12 | font-weight: 900; 13 | } 14 | h2 { 15 | font-size: 40px; 16 | } 17 | h3 { 18 | font-size: 30px; 19 | } 20 | a, a:visited, a:hover { 21 | color: #0071bc; 22 | } 23 | hr { 24 | margin-bottom: 30px; 25 | margin-top: 30px; 26 | border-color: #f1f1f1; 27 | border-width: 1px; 28 | } 29 | p { 30 | font-size: 125%; 31 | } 32 | 33 | /* Forms */ 34 | 35 | label { 36 | display: block; 37 | } 38 | .form-control { 39 | margin-bottom: 10px; 40 | } 41 | 42 | /* General classes */ 43 | 44 | .lead { 45 | color: #000; 46 | font-size: 20px; 47 | font-weight: 400; 48 | } 49 | 50 | /* Icons */ 51 | 52 | .icon .fa { 53 | color: #0071bc; 54 | font-size: 75px; 55 | margin-bottom: 20px; 56 | margin-top: 20px; 57 | } 58 | 59 | /* Card */ 60 | 61 | .card { 62 | background: #0071bc; 63 | border-radius: 5px; 64 | color: #fff; 65 | margin-bottom: 20px; 66 | padding: 20px; 67 | } 68 | .card a, .card a:visited, .card a:hover { 69 | color: #fff; 70 | display: block; 71 | } 72 | .card .fa { 73 | color: #ffffff !important; 74 | } 75 | 76 | /* images */ 77 | 78 | .feature img { 79 | border-radius: 5px; 80 | border: 10px solid #f1f1f1; 81 | } 82 | .partners img { 83 | margin: 30px 0 40px; 84 | } 85 | 86 | /* Navbar */ 87 | 88 | .navbar { 89 | border-radius: 0; 90 | margin-bottom: 0; 91 | } 92 | .navbar img { 93 | margin-top: 8px; 94 | max-height: 35px; 95 | } 96 | .navbar-inverse, .navbar-inverse .navbar-collapse, .navbar-inverse .navbar-form { 97 | background-color: #205493; 98 | border-color: #205493; 99 | } 100 | .navbar-inverse .navbar-toggle { 101 | border-color: #ffffff; 102 | } 103 | .navbar-inverse .navbar-brand, .navbar-inverse .navbar-nav>li>a { 104 | color: #ffffff; 105 | } 106 | .navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover { 107 | background: #205493; 108 | } 109 | .navbar-header a, .navbar-header a:visited, .navbar-header a:hover { 110 | color: #ffffff; 111 | } 112 | 113 | /* Masthead */ 114 | 115 | .opacity { 116 | background: rgba(255, 255, 255, .7); 117 | border-radius: 5px; 118 | padding: 20px; 119 | } 120 | .bs-docs-masthead, 121 | .bs-docs-header { 122 | margin-bottom: 30px; 123 | position: relative; 124 | padding: 30px 0; 125 | color: #fff; 126 | text-align: center; 127 | background-color: #0071bc; 128 | background-image: url('../img/hero.png'); 129 | background-position: 50% 50%; 130 | background-repeat: no-repeat; 131 | } 132 | .bs-docs-masthead .container { 133 | padding-bottom: 50px; 134 | padding-top: 50px; 135 | } 136 | .bs-docs-masthead a, .bs-docs-masthead a:visited { 137 | color: #ffffff; 138 | } 139 | .bs-docs-masthead .bs-docs-booticon { 140 | margin: 0 auto 30px; 141 | } 142 | .bs-docs-masthead h1 { 143 | font-weight: 900; 144 | line-height: 1; 145 | color: #fff; 146 | } 147 | .bs-docs-masthead hr { 148 | border-top: 1px solid #fff; 149 | margin-top: 20px; 150 | margin-bottom: 20px; 151 | } 152 | .bs-docs-masthead .lead { 153 | margin: 0 auto 30px; 154 | font-size: 20px; 155 | color: #fff; 156 | } 157 | .bs-docs-masthead .btn { 158 | width: 100%; 159 | padding: 15px 30px; 160 | font-size: 20px; 161 | } 162 | .bs-docs-masthead a, .bs-docs-masthead a:visited { 163 | text-decoration: underline; 164 | } 165 | .bs-docs-masthead a:hover { 166 | text-decoration: none; 167 | } 168 | @media (min-width: 480px) { 169 | .bs-docs-masthead .btn { 170 | width: auto; 171 | } 172 | } 173 | 174 | @media (min-width: 768px) { 175 | .bs-docs-masthead { 176 | padding: 80px 0; 177 | } 178 | .bs-docs-masthead h1 { 179 | font-size: 60px; 180 | } 181 | .bs-docs-masthead .lead { 182 | font-size: 24px; 183 | } 184 | } 185 | 186 | /* Official */ 187 | 188 | .official { 189 | background: #f1f1f1; 190 | padding: 5px 0; 191 | } 192 | .official p { 193 | font-size: 95%; 194 | margin: 0 0; 195 | padding: 0 0; 196 | } 197 | .official img { 198 | border: 1px solid #d6d7d9; 199 | margin-right: 10px; 200 | max-width: 45px; 201 | } 202 | 203 | /* Footer */ 204 | 205 | .footer { 206 | padding-bottom: 40px; 207 | padding-top: 40px; 208 | background-color: #205493; 209 | background-position: right bottom; 210 | background-repeat: no-repeat; 211 | } 212 | .footer a, .footer a:visited, .footer { 213 | color: #fff; 214 | } 215 | .footer .fa { 216 | font-size: 150%; 217 | margin-bottom: 20px; 218 | margin-left: 10px; 219 | margin-right: 10px; 220 | } 221 | .footer hr { 222 | margin-bottom: 30px; 223 | margin-top: 30px; 224 | border-color: #ffffff; 225 | border-width: 1px; 226 | } 227 | .footer img { 228 | max-width: 150px; 229 | } 230 | .footer p { 231 | font-size: 100%; 232 | } 233 | 234 | /* Buttons */ 235 | 236 | .btn { 237 | font-size: 20px; 238 | } 239 | a.btn-primary, .btn-primary, a.btn-primary:hover, .btn-primary:hover { 240 | color: #fff; 241 | background-color: #0071bc; 242 | border: none; 243 | font-weight: 900; 244 | margin-bottom: 30px; 245 | margin-top: 30px; 246 | padding: 15px; 247 | } 248 | a.btn-primary:hover, .btn-primary:hover { 249 | text-decoration: none; 250 | } 251 | -------------------------------------------------------------------------------- /img/favicon/android-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/android-icon-144x144.png -------------------------------------------------------------------------------- /img/favicon/android-icon-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/android-icon-192x192.png -------------------------------------------------------------------------------- /img/favicon/android-icon-36x36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/android-icon-36x36.png -------------------------------------------------------------------------------- /img/favicon/android-icon-48x48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/android-icon-48x48.png -------------------------------------------------------------------------------- /img/favicon/android-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/android-icon-72x72.png -------------------------------------------------------------------------------- /img/favicon/android-icon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/android-icon-96x96.png -------------------------------------------------------------------------------- /img/favicon/apple-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon-114x114.png -------------------------------------------------------------------------------- /img/favicon/apple-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon-120x120.png -------------------------------------------------------------------------------- /img/favicon/apple-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon-144x144.png -------------------------------------------------------------------------------- /img/favicon/apple-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon-152x152.png -------------------------------------------------------------------------------- /img/favicon/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon-180x180.png -------------------------------------------------------------------------------- /img/favicon/apple-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon-57x57.png -------------------------------------------------------------------------------- /img/favicon/apple-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon-60x60.png -------------------------------------------------------------------------------- /img/favicon/apple-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon-72x72.png -------------------------------------------------------------------------------- /img/favicon/apple-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon-76x76.png -------------------------------------------------------------------------------- /img/favicon/apple-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon-precomposed.png -------------------------------------------------------------------------------- /img/favicon/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/apple-icon.png -------------------------------------------------------------------------------- /img/favicon/browserconfig.xml: -------------------------------------------------------------------------------- 1 | 2 | #ffffff -------------------------------------------------------------------------------- /img/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /img/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /img/favicon/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/favicon-96x96.png -------------------------------------------------------------------------------- /img/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/favicon.ico -------------------------------------------------------------------------------- /img/favicon/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "App", 3 | "icons": [ 4 | { 5 | "src": "\/android-icon-36x36.png", 6 | "sizes": "36x36", 7 | "type": "image\/png", 8 | "density": "0.75" 9 | }, 10 | { 11 | "src": "\/android-icon-48x48.png", 12 | "sizes": "48x48", 13 | "type": "image\/png", 14 | "density": "1.0" 15 | }, 16 | { 17 | "src": "\/android-icon-72x72.png", 18 | "sizes": "72x72", 19 | "type": "image\/png", 20 | "density": "1.5" 21 | }, 22 | { 23 | "src": "\/android-icon-96x96.png", 24 | "sizes": "96x96", 25 | "type": "image\/png", 26 | "density": "2.0" 27 | }, 28 | { 29 | "src": "\/android-icon-144x144.png", 30 | "sizes": "144x144", 31 | "type": "image\/png", 32 | "density": "3.0" 33 | }, 34 | { 35 | "src": "\/android-icon-192x192.png", 36 | "sizes": "192x192", 37 | "type": "image\/png", 38 | "density": "4.0" 39 | } 40 | ] 41 | } -------------------------------------------------------------------------------- /img/favicon/ms-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/ms-icon-144x144.png -------------------------------------------------------------------------------- /img/favicon/ms-icon-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/ms-icon-150x150.png -------------------------------------------------------------------------------- /img/favicon/ms-icon-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/ms-icon-310x310.png -------------------------------------------------------------------------------- /img/favicon/ms-icon-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/favicon/ms-icon-70x70.png -------------------------------------------------------------------------------- /img/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/flag.png -------------------------------------------------------------------------------- /img/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/hero.png -------------------------------------------------------------------------------- /img/logo-reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/logo-reverse.png -------------------------------------------------------------------------------- /img/logo-text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/logo-text.png -------------------------------------------------------------------------------- /img/logos/cdt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/logos/cdt.png -------------------------------------------------------------------------------- /img/logos/govops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/logos/govops.png -------------------------------------------------------------------------------- /img/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/thumbnail.png -------------------------------------------------------------------------------- /img/watch-us-work.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CA-CODE-Works/codecagov/71b00ad1245a26bc2fbee6b2c4e7cb03bb61793d/img/watch-us-work.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | Code California - Coding California government 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 57 | 58 | 59 | 60 | 61 |
62 |
63 |
64 |
65 |

California state flagAn official California State Government website.

66 |
67 |
68 |
69 |
70 | 71 | 100 | 101 |
102 |
103 |
104 |
105 |

Coding California government

106 |

Code California is an open collaboration between agencies, industry technology partners and civic technologists working to code a more innovative, collaborative and effective government that best serves the people of California.

107 |
108 |
109 |
110 |
111 | 112 | 148 | 149 |
150 |
151 |
152 |

Policy

153 | 154 |

View the State of California's open source code policy.

155 |

View the policy »

156 |
157 |
158 |

Playbook

159 | 160 |

Get started and collaborate with Code California.

161 |

View the playbook »

162 |
163 |
164 |

Platform

165 | 166 |

Coming soon.

167 |

Learn more »

168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 | 177 |
178 |
179 |
180 |

Community

181 |
182 |
183 |
184 |
185 | 186 |
187 |
188 |

Connect and collaborate with California state leaders, industry partners and civic technologists building a new approach to government technology innovation.

189 |

Join the community »

190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 | 199 | 222 | 223 |
224 |
225 |
226 |

Training

227 |
228 |
229 |
230 |
231 | 232 |
233 |
234 |

Get training on how you can champion and help streamline more efficient and effective government leadership, including executive, procurement, legal and developer tracks.

235 |

Get training »

236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 | 245 |
246 |
247 |
248 |

How we work

249 |

We work in the open, because ideas and contributions come from everywhere.

250 |
251 |
252 |
253 |
254 |   255 |
256 |
257 | Watch us work 258 |

Watch us work »

259 |
260 |
261 |   262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 | 271 |
272 |
273 |
274 |

Partners

275 |

Code California is an open collaboration between California state government agencies, industry partners and civic technologists. Participating agencies:

276 |
277 |
278 |
279 |
280 | California Government Operations Agency 281 |
282 |
283 |
284 | California Department of Technology 285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 | 294 |
295 |
296 |
297 |

Connect

298 |

Connect with Code California.

299 |
300 |
301 |
302 |
303 |
304 | 305 |

Subscribe

306 |
307 |
308 |
309 |
310 | 311 |

Twitter

312 |
313 |
314 |
315 |
316 | 317 |

Facebook

318 |
319 |
320 |
321 |
322 | 323 |

Medium

324 |
325 |
326 |
327 |
328 |
329 |

 

330 |
331 |
332 |
333 | 334 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 381 | 382 | 383 | --------------------------------------------------------------------------------