forked from hackforla/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtoolkit.html
110 lines (92 loc) · 4.28 KB
/
toolkit.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
layout: default
title: Toolkit
---
<div class="toolkit-header header-container">
<h2 class="toolkit-header__h2">Our Toolkit</h2>
<p class="toolkit-header__p">Toolkit implies that there is one set of tools that is perfect for the job you are tackling!
What you will find here are tools we have found to be effective. Think of this as the most awesome collective tool shed!
Here you can find, share, and suggest tools that are of use to the open source civic tech software community.</p>
<div class="toolkit-header__hero-image">
{% include svg/toolkit-hero.svg %}
</div>
</div>
<div class="toolkit-header__text-group">
<h3 class="toolkit-header__h3">Development</h3>
<h3 class="toolkit-header__h3">Design</h3>
<h3 class="toolkit-header__h3">Project Management</h3>
</div>
<div class="toolkit-background content-section">
<div class="toolkit__guides-section">
<div class="suggest-guide-group"><h3>Guides (We Made These!)</h3><button class="toolkit-button btn btn-primary">Suggest a guide</button></div>
<div class="toolkit-flex-container">
<!-- Searching through toolkitPages collection -->
<!-- change collection to _guidepages -->
{%- for item in site.guide-pages -%}
{%- if item.status == 'active' -%}
<div class="toolkit-flex-item section-container toolkit-section-container">
{%- if item.svg -%}
<div class="toolkit-image-container">
{% include {{ item.svg }} %}
</div>
{%- endif -%}
<div class="toolkit-info-container">
{%- if item.title -%}
<h3 class="toolkit-flex-item-header"><a href={{ item.provider-link }}>{{ item.title }}</a></h3>
{%- endif -%}
{%- if item.short-description -%}
<p class="toolkit-flex-item-p">{{ item.short-description }}</p>
{%- endif -%}
</div>
</div>
{%- endif -%}
{%- endfor -%}
{%- for item in site.guide-pages -%}
{%- if item.status == 'coming-soon' -%}
<div class="toolkit-flex-item section-container toolkit-section-container">
{%- if item.svg -%}
<div class="toolkit-image-container">
{% include {{ item.svg }} %}
</div>
{%- endif -%}
<div class="toolkit-info-container">
{%- if item.title -%}
<h3 class="toolkit-flex-item-header not-clickable">{{ item.title }}</h3>
{%- endif -%}
{%- if item.description -%}
<p class="toolkit-flex-item-p">{{ item.short-description }}</p>
{%- endif -%}
</div>
{%- if item.status == 'coming-soon' -%}
<span class="toolkit-status-text">coming soon</span>
{%- endif -%}
</div>
{%- endif -%}
{%- endfor -%}
</div>
</div>
<div class="toolkit__external-resources">
<div class="suggest-guide-group"><h3>External Resources</h3><button class="toolkit-button btn btn-primary">Suggest a resource</button></div>
<div class="resource-container">
<!-- Searching through toolkitResources collection -->
{%- for item in site.toolkitResources -%}
{%- if item.display == true -%}
<div class="toolkit-flex-item-resource section-container toolkit-section-container">
{%- if item.svg -%}
<div class="svg-container">
{% include {{ item.svg }} %}
</div>
{%- endif -%}
{%- if item.title -%}
<h3 class="toolkit-resource-header"><a href="{{item.provider-link}}" target="_blank">{{ item.title }}</a></h3>
<p class="toolkit-resource-text">{{ item.description }}</p>
<a href="{{item.provider-link}}" class="outer-link" target="_blank">
{% include {{ item.link-svg }} %}
</a>
{%- endif -%}
</div>
{%- endif -%}
{%- endfor -%}
</div>
</div>
</div>