├── .gitignore ├── _layouts └── default.html ├── _posts ├── 2013-09-02-item-9.md ├── 2013-09-02-item-12.md ├── 2013-09-02-item-6.md ├── 2013-09-02-item-2.md ├── 2013-09-02-item-3.md ├── 2013-09-02-item-4.md ├── 2013-09-02-item-7.md ├── 2013-09-02-item-8.md ├── 2013-09-02-item-1.md ├── 2013-09-02-item-11.md ├── 2013-09-02-item-5.md └── 2013-09-02-item-10.md ├── output.json ├── _includes ├── head.html ├── nav.html └── interactive-table.html ├── index.html ├── README.md ├── params.json └── javascripts └── list.js /.gitignore: -------------------------------------------------------------------------------- 1 | _site/ -------------------------------------------------------------------------------- /_layouts/default.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
{% include head.html %} 4 | 5 | {{ content }} 6 | 7 | 8 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-9.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: LabDoor 4 | city: Chicago 5 | state: Illinois 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - consumer 13 | - safety 14 | - lab 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-12.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: Zipongo 4 | city: Washington 5 | state: DC 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - wellness 13 | - food 14 | - employers 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-6.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: Cellscope 4 | city: Berkeley 5 | state: California 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - device 13 | - ER 14 | - children 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: Podimetrics 4 | city: Boston 5 | state: Massachusetts 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - diabetic 13 | - device 14 | - feet 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-3.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: Reify Health 4 | city: Baltimore 5 | state: Maryland 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - mobile 13 | - monitoring 14 | - aco 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-4.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: Benefitter 4 | city: San Francisco 5 | state: California 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - employer 13 | - plans 14 | - aca 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-7.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: Cardio 4 | city: Cambridge 5 | state: Massachusetts 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - big data 13 | - sensors 14 | - devices 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-8.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: Eligible 4 | city: Mountain View 5 | state: California 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - eligibility 13 | - api 14 | - plans 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: AchieveMint 4 | city: San Francisco 5 | state: California 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - wellness 13 | - consumer 14 | - employer 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-11.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: Pipette 4 | city: San Francisco 5 | state: California 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - remote monitoring 13 | - device 14 | - aco 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-5.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: Cake Health 4 | city: San Francisco 5 | state: California 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - plans 13 | - insurance 14 | - finances 15 | --- 16 | -------------------------------------------------------------------------------- /_posts/2013-09-02-item-10.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: entry 3 | company-name: Omada Health 4 | city: San Francisco 5 | state: California 6 | employees: 100 7 | 8 | categories: 9 | - startup 10 | 11 | tags: 12 | - diabetes 13 | - prevention 14 | - device 15 | --- 16 | -------------------------------------------------------------------------------- /output.json: -------------------------------------------------------------------------------- 1 | --- 2 | layout: none 3 | --- 4 | [{% for post in site.posts %}{ 5 | "company-name": "{{post.company-name}}", 6 | "city": "{{post.city}}", 7 | "state": "{{post.state}}", 8 | "employees": "{{post.employees}}", 9 | "tags": "{{ post.tags | array_to_sentence_string }}", 10 | "categories": "{{post.categories}}" 11 | }{% if forloop.rindex0 > 0 %},{% endif %}{% endfor %}] -------------------------------------------------------------------------------- /_includes/head.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
6 |
7 | An easy way to use Jekyll and Github Pages as a "database".
Items are just posts. Type to search. Click on row headers to sort.
See a JSON representation of the data below.
| Company Name | 12 |City | 13 |Category | 14 |Tags | 15 |
|---|---|---|---|
| {{ post.company-name }} | 21 |{{ post.city }} | 22 |{{ post.categories }} | 23 |{{ post.tags | array_to_sentence_string }} | 24 |