├── themes └── tailwinds-theme │ ├── layouts │ ├── partials │ │ ├── landing-header.html │ │ ├── head.html │ │ ├── footer.html │ │ ├── header.html │ │ └── cogref-head.html │ ├── 404.html │ ├── _default │ │ ├── list.html │ │ ├── single.html │ │ ├── experiences.html │ │ ├── projects.html │ │ ├── baseof.html │ │ └── contact.html │ └── index.html │ ├── assets │ ├── css │ │ ├── site.css │ │ ├── tailwind.config.js │ │ ├── styles.css │ │ ├── dev │ │ │ └── postcss.config.js │ │ └── postcss.config.js │ └── img │ │ └── profile.jpg │ ├── archetypes │ └── default.md │ ├── theme.toml │ ├── package.json │ ├── LICENSE │ ├── readme.md │ └── package-lock.json ├── content ├── _index.md ├── contact │ └── _index.md ├── projects │ ├── _index.md │ ├── rapid-response.md │ ├── detention-lifeline.md │ ├── frio_county_covid_command_center.md │ ├── .bak.courthouse_raids.md │ └── idp_raids_map.md ├── experience │ ├── _index.md │ ├── streetwide.md │ ├── blue_ridge_labs.md │ ├── teachley.md │ └── buzzfeed.md └── posts │ └── _index.md ├── static ├── profile.jpg ├── profile.webp └── projects │ └── dl │ └── screen.png ├── netlify.toml ├── deploy-preview.sh ├── deploy.sh ├── README.md ├── config.toml ├── tailwind.min.css └── .gitignore /themes/tailwinds-theme/layouts/partials/landing-header.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /themes/tailwinds-theme/assets/css/site.css: -------------------------------------------------------------------------------- 1 | .starter { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Cognitive Reflex 3 | author: FI Diego 4 | date: 2019-05-15 5 | --- 6 | -------------------------------------------------------------------------------- /static/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidiego/www.cognitivereflex.com/master/static/profile.jpg -------------------------------------------------------------------------------- /static/profile.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidiego/www.cognitivereflex.com/master/static/profile.webp -------------------------------------------------------------------------------- /content/contact/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Contact 3 | layout: contact 4 | description: Contact 5 | position: 4 6 | --- 7 | -------------------------------------------------------------------------------- /content/projects/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Projects 3 | layout: projects 4 | description: Projects 5 | position: 1 6 | --- 7 | -------------------------------------------------------------------------------- /static/projects/dl/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidiego/www.cognitivereflex.com/master/static/projects/dl/screen.png -------------------------------------------------------------------------------- /content/experience/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Experience 3 | layout: experiences 4 | description: experience 5 | position: 2 6 | --- 7 | -------------------------------------------------------------------------------- /themes/tailwinds-theme/archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | author: 3 | title: {{ replace .Name "-" " " | title }} 4 | date: {{ .Date }} 5 | --- -------------------------------------------------------------------------------- /themes/tailwinds-theme/assets/img/profile.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fidiego/www.cognitivereflex.com/master/themes/tailwinds-theme/assets/img/profile.jpg -------------------------------------------------------------------------------- /themes/tailwinds-theme/assets/css/tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | theme: { 3 | extend: {}, 4 | }, 5 | variants: {}, 6 | plugins: [], 7 | }; 8 | -------------------------------------------------------------------------------- /content/posts/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Blog 3 | author: FI Diego 4 | date: 2019-05-15 5 | position: 3 6 | --- 7 | 8 | Bit Jockey | Code Mechanic | Purveyor of fine APIs 9 | -------------------------------------------------------------------------------- /content/projects/rapid-response.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Rapid Response 3 | layout: project 4 | order: 2 5 | description: A distributed, federated contact-center for organizations organizing around ICE enforcement in immigrant communities. 6 | --- 7 | 8 | Lol 9 | -------------------------------------------------------------------------------- /themes/tailwinds-theme/layouts/404.html: -------------------------------------------------------------------------------- 1 | {{ define "main" }} 2 |
page not found
5 |Sorry about that.
6 |{{.Description}} 8 | {{ if .Params.project_link }} 9 | Project Website 10 | {{ end }} 11 |
12 | 13 | {{ .Content }} 14 |{{.Description}}
11 |9 | {{.Description}} 10 | 11 | {{ if .Params.project_link }} 12 | Visit 13 | {{ end }} 14 | 15 |
16 |9 | Use the form below to shoot me an email. 10 |
11 |
14 |
15 | 21 | Cognitive Reflex 22 |
23 |24 | Full stack dev at large 25 |
26 |