-
Notifications
You must be signed in to change notification settings - Fork 16
/
resources.html
140 lines (123 loc) · 4.57 KB
/
resources.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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
---
title: Resources
layout: project
---
<article>
<div class="inner">
<div class="project-intro">
<p>We're honored to contribute to the discussion around diversity, inclusion, and access to technology at the Travis Foundation, and want to help highlight the work of others who are doing the same.</p>
</div>
<div class="project-main">
<section>
<h2 id="accessibility">Accessibility</h2>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "accessibility" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section>
<h2 id="allyship">Allyship</h2>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "allyship" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section>
<h2 id="codes-of-conduct">Codes of Conduct</h2>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "codes-of-conduct" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section>
<h2 id="conferences-and-public-speaking">Conferences and Public Speaking</h2>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "conferences-and-public-speaking" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section>
<h2 id="diversity">Diversity</h2>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "diversity" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section>
<h2 id="gender">Gender</h2>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "gender" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section>
<h2 id="gender-pay-gap">Gender Pay Gap</h2>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "gender-pay-gap" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section>
<h2 id="inclusivity">Inclusivity</h3>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "inclusivity" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section>
<h2 id="intersectional-feminism">Intersectional Feminism</h2>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "intersectional-feminism" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section>
<h2 id="reverse-discrimination">Reverse Discrimination</h2>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "reverse-discrimination" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
<section>
<h2 id="unconscious-bias">Unconscious Bias</h2>
<ul>
{% for resource in site.data.resources %}
{% if resource.category == "unconscious-bias" %}
<li><a href="{{resource.link}}">"{{resource.title}}"</a> - {{resource.text}}</li>
{% endif %}
{% endfor %}
</ul>
</section>
</div>
</div>
</article>