Skip to content

Commit

Permalink
Fixes #593 (#596)
Browse files Browse the repository at this point in the history
* Made changes to the location category on all projects to better align with the rest of the categories. Also implemented some Liquid markup on project-card.html to make sure the cities were being followed by a comma.

* Added liquid markup to the layout/project.html file to make sure a comma follows every city entry.
  • Loading branch information
efrenmarin45 authored Jul 7, 2020
1 parent c7232aa commit 6892b54
Show file tree
Hide file tree
Showing 27 changed files with 86 additions and 56 deletions.
4 changes: 3 additions & 1 deletion _includes/project-card.html
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ <h4 class="project-title project-title-no-page">{{ project.title }}</h4>
{%- if project.location -%}
<div class="project-location">
<strong>Location: </strong>
{{ project.location }}
{% for city in project.location %}
<p class='project-card-field-inline'> {{ city }}</p>{% if forloop.last == false %},{% endif %}
{% endfor %}
</div>
{%- endif -%}

Expand Down
6 changes: 5 additions & 1 deletion _layouts/project.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ <h5 class='status-text'>{{ page.status }}</h5>
</div>
{% endif %}
{% if page.partner %}<p><strong>Partner: </strong>{{ page.partner }}</p>{% endif %}
{% if page.location %}<p><strong>Location: </strong>{{ page.location }}</p>{% endif %}
{% if page.location %}<p><strong>Location: </strong>
{% for city in page.location %}
{{ city }}{% if forloop.last == false %},{% endif %}
{% endfor %}
</p>{% endif %}

<!-- Links Logic to filter prioritized links and to correct comma placement -->
{% if page.links %}
Expand Down
5 changes: 4 additions & 1 deletion _projects/311-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,10 @@ technologies:
- Flask (Sanic) / Pandas
- Bulma
- PostgreSQL
location: Downtown LA
location:
- Downtown LA
- Remote

partner: EmpowerLA
status: Active
---
7 changes: 3 additions & 4 deletions _projects/adopt-civic-art.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ alt: "'adopt civic arts'"
links:
- name: GitHub
url: 'https://github.com/hackforla/adopt-civic-art'
# - name: Site
# url: ''
# looking:
location: Downtown LA
location:
- Downtown LA
- Remote
partner: County of Los Angeles
hide: true
status: On Hold
Expand Down
4 changes: 3 additions & 1 deletion _projects/civic-tech-index.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ looking:
skill: UI designer
- category: Content
skill: Video content script writer
location: DTLA and remote
location:
- Downtown LA
- Remote
partner: Code for America, Yale OpenLab and many more.
status: Active
---
8 changes: 3 additions & 5 deletions _projects/criminal-sentencing.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,9 @@ alt: "'gavel'"
links:
- name: GitHub
url: "https://github.com/timdef/criminal-sentencing"
# - name: Site
# url: ''
# looking: Great communicators and researchers!
location: Downtown LA
# partner:
location:
- Downtown LA
- Remote
hide: true
status: On Hold
---
5 changes: 3 additions & 2 deletions _projects/curbmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@ looking:
skill: UX researchers
- category: UI/UX
skill: UI designers
location: Downtown LA
location:
- Downtown LA
- Remote
hide: true
# partner:
status: On Hold
---
4 changes: 3 additions & 1 deletion _projects/engage.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ technologies:
- React
- Django
- SQL (PostgreSQL)
location: Santa Monica
location:
- Santa Monica
- Remote
tools: Hotjar, Google Analytics
partner: City of Santa Monica
status: Active
Expand Down
4 changes: 3 additions & 1 deletion _projects/food-oasis.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,9 @@ links:
looking:
- category: Development
skill: React developers (2)
location: Downtown LA
location:
- Downtown LA
- Remote
tools: figma, photoshop, sketch, pencil and paper, phone calls.
partner: seeking
status: Rebooting
Expand Down
4 changes: 3 additions & 1 deletion _projects/hellogov.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ looking:
skill: User Testing and Outreach
- category: UI/UX
skill: UI redesign, all skill levels
location: Santa Monica
location:
- Santa Monica
- Remote
partner: Digital Defense Fund
tools: Mongo, Angular, Node, JS
status: Active
Expand Down
4 changes: 3 additions & 1 deletion _projects/home-unite-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ looking:
technologies:
- React
- NoSQL
location: Downtown LA and remote
location:
- Downtown LA
- Remote
partner: Safe Place for Youth (SPY)
status: Active
tools: Figma, Miro, AWS, Nginx, Terraform, Docker, DynamoDB, Style Components, Zoom, GitHub, Google Drive, Docs, Sheets, Slides
Expand Down
5 changes: 3 additions & 2 deletions _projects/jobs-for-hope.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@ links:
url: 'https://github.com/hackforla/jobs-for-hope'
- name: Site
url: 'https://jobs-for-hope.herokuapp.com/'
# looking: No one currently
location: Downtown LA
location:
- Downtown LA
- Remote
partner: LA County Homeless Initiative; http://homeless.lacounty.gov
status: On Hold
---
7 changes: 3 additions & 4 deletions _projects/light-the-way.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,16 @@ description: Ahead of you, to guide you - Los Angeles' Best Veteran Resources.
image: /assets/images/projects/light-the-way.jpg
alt: "'Veteran returned from service to civilian life'"
links:
# - name: GitHub
# url: 'https://github.com/light-the-way'
- name: Site
url: 'https://lighttheway.herokuapp.com/'
looking:
- category: Development
skill: Front-end Developers
- category: UI/UX
skill: UX Designers
location: Downtown LA
location:
- Downtown LA
- Remote
hide: true
# partner:
status: On Hold
---
4 changes: 3 additions & 1 deletion _projects/lucky-parking.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ looking:
technologies:
- React-JS
- PostgreSQL
location: Santa Monica
location:
- Santa Monica
- Remote
partner: Seeking
tools: Google Colab, AWS
status: Active
Expand Down
7 changes: 3 additions & 4 deletions _projects/metro-ontime.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,9 @@ links:
url: 'https://www.metro.net/'
- name: Observable
url: 'https://observablehq.com/@ctsexton/railstats-marey-diagram'
# looking:
# - Application Developers (Javascript, Node, React, D3)
# - Data Engineers (Python, Pandas, GIS)
location: Downtown LA
location:
- Downtown LA
- Remote
partner: LA Metro (https://www.metro.net/)
tools: Docker, AWS, Observable
status: Completed
Expand Down
4 changes: 3 additions & 1 deletion _projects/new-schools-today.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,8 @@ technologies:
- ReactJS
- Flutter
partner: Seeking
location: Santa Monica, CA
location:
- Santa Monica
- Remote
status: Active
---
12 changes: 3 additions & 9 deletions _projects/not-today.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,9 @@ leadership:
slack: 'https://app.slack.com/team/UNTQA141G'
github: 'https://github.com/jacoronilla'
picture: https://avatars.githubusercontent.com/jacoronilla
# - name: Nick Gieschen
# role:
# links:
# slack: 'https://app.slack.com/team/UQZ739K5X'
# github:
# picture:
links:
- name: GitHub
url: 'https://github.com/hackforla/not-today'
# - name: Site
# url:
looking:
- category: Development
skill: Flutter Development
Expand All @@ -39,7 +31,9 @@ looking:
skill: UI/UX
- category: Content
skill: Empathy and sensitivity with subject material and end users
location: Santa Monica
location:
- Santa Monica
- Remote
partner: Seeking
status: Active
---
6 changes: 3 additions & 3 deletions _projects/public-tree-map.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ links:
url: 'https://hackforla.slack.com/messages/C9UU5KKAA/'
- name: Readme
url: 'https://github.com/Public-Tree-Map/public-tree-map/blob/master/README.md'
# - name: Site
# url: ''
looking:
- category: Development
skill: Front-end web development (JavaScript, Leaflet)
Expand All @@ -45,7 +43,9 @@ looking:
skill: QA and UX testing
- category: Content
skill: Appreciation for trees (anyone interested is welcome!)
location: Santa Monica
location:
- Santa Monica
- Remote
partner: City of Santa Monica
tools: Zeplin
status: Active
Expand Down
4 changes: 3 additions & 1 deletion _projects/record-clearance-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ looking:
skill: UX-UI
- category: Content
skill: Content/writing
location: West Los Angeles
location:
- West Los Angeles
- Remote
status: Active
---
7 changes: 3 additions & 4 deletions _projects/shared-housing-project.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,11 @@ alt-hero: "Light-gray background"
links:
- name: GitHub
url: 'https://github.com/hackforla/shared-housing'
# - name: Site
# url: ''
looking:
- category: UI/UX
skill: Graphics Designer
location: Downtown LA
# partner:
location:
- Downtown LA
- Remote
status: On Hold
---
4 changes: 3 additions & 1 deletion _projects/spare.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ looking:
skill: Product Management
- category: SEO/Marketing
skill: Marketing
location: Santa Monica
location:
- Santa Monica
- Remote
partner: Hope of the Valley and hopefully others in the near future.
status: On Hold
---
4 changes: 3 additions & 1 deletion _projects/tdm-calculator.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ links:
looking:
- category: UI/UX
skill: UI Designer
location: Downtown LA
location:
- Downtown LA
- Remote
partner: LA Department of Transportation LADOT (https://ladot.lacity.org/)
status: Active
---
4 changes: 3 additions & 1 deletion _projects/undebate.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ technologies:
- Express
- React
- Node (MERN)
location: Santa Monica + Remote
location:
- Santa Monica
- Remote
partner: EnCiv.org, Ballotpedia.org
status: Active
---
5 changes: 4 additions & 1 deletion _projects/vrms.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@ looking:
skill: Back end devs (any level)
- category: UI/UX
skill: UI/UX
location: Santa Monica, Downtown LA
location:
- Santa Monica
- Downtown LA
- Remote
partner: TBD
status: Active
---
6 changes: 4 additions & 2 deletions _projects/website.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ looking:
technologies:
- GitHub Pages
- Jekyll
location: Santa Monica, Downtown and Remote
# partner: N/A
location:
- Santa Monica
- Downtown LA
- Remote
status: Active
---
4 changes: 3 additions & 1 deletion _projects/work-for-la.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ links:
url: 'https://github.com/hunterowens/workfor.la'
- name: Site
url: 'http://www.workfor.la/'
location: Downtown LA
location:
- Downtown LA
- Remote
partner: Department of Personnel
status: Completed
completed-contact: [email protected]
Expand Down
4 changes: 3 additions & 1 deletion _projects/writeforall.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ looking:
skill: QA coder
- category: Ops
skill: DevOps engineer
location: Downtown LA and remote
location:
- Downtown LA
- Remote
partner: Seeking
status: Active
---

0 comments on commit 6892b54

Please sign in to comment.