-
-
Notifications
You must be signed in to change notification settings - Fork 778
/
citizen-engagement.html
62 lines (58 loc) · 2.81 KB
/
citizen-engagement.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: default
title: Citizen Engagement
permalink: /citizen-engagement
---
<!-- Header banner -->
<div class="header-container flex-container program-header-container">
<div class="header-text">
<h1 class="title1">Citizen Engagement</h1>
<p>
We at Hack for LA are volunteers that believe in building technology
and analyzing data to make it easier to participate effectively in your community.
</p>
<p class="sub-p">
Below are our products that are making that happen.
If you have a new idea, want to submit feedback that will guide the next iteration
of an existing tool, or want to start working on a project team with us, please contact
us at <a href="mailto: citizenengagement@hackforla.org">citizenengagement@hackforla.org.</a>
</p>
<p class="bottom-header-paragraph">
Read more about <a href="https://sdg.lamayor.org/about/global-goals">LA’s Sustainable Development Goals</a>.
</p>
</div>
<img class="header-hero-image" src="/assets/images/citizen-engagement/citizen-engagement-header.svg"
alt="">
</div>
<!-- Header banner -->
<!-- Page body -->
<section class="content-section project-wrapper">
<div class="page-contain projects program-area-container">
<h2>Current Projects</h2>
<!-- Card -->
<!-- Cards have been standardized and can be found in _sass/elements/_cards-->
<!-- These cards utilize the previous standardized elements, plus new elements that I have integrated. -->
<!-- Specifically I have added data attributes to the page-card container, and the dropdown arrow.
We use the data attributes in JS to expand and close the cards. -->
{% include program-area-pages-cards.html %}
<div class="page-card card-primary page-card-lg organizations">
<div class="organizations-info">
<h3>Organizations We Work With</h3>
<p>None of what we do would be possible without the generous
support of many organizations throughout our communities.
A big thank you to:</p>
</div>
<div class="organizations-images">
{% assign partners = site.data.internal.partners %}
{% for partner in partners %}
{% if partner.program-area contains "Citizen Engagement" %}
<img class="org-img org-img-large" src="{{ partner.image }}" alt="{{ partner.name }}">
{% endif %}
{% endfor %}
</div>
</div>
</div>
<!-- Card -->
</section>
<!-- Include javaScript -->
<script src="{{ '/assets/js/citizen-engagement.js' | absolute_url }}"></script>