This repository has been archived by the owner on Sep 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
about-us.html
100 lines (82 loc) · 2.53 KB
/
about-us.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
---
layout: base
permalink: /about-us
title: aboutus_title
add_to_nav: true
order: 2
---
<div class="container mx-auto">
<div class="mx-auto">
<div class="py-6">
<h1 class="text-4xl font-bold leading-tight text-gray-900">
{% t page.title %}
</h1>
</div>
</div>
{% include shutdown.html %}
<p class="mb-2">{% t about_intro %}</p>
<h2 class="text-2xl font-bold leading-tight text-gray-900 mt-8 mb-4">
{% t about_how_we_work_title %}
</h2>
<p class="mb-2">{% t about_how_we_work %}</p>
<h2 class="text-2xl font-bold leading-tight text-gray-900 mt-8 mb-4">
{% t about_equity_title %}
</h2>
{% tf about_equity.html %}
<h2 class="text-2xl font-bold leading-tight text-gray-900 mt-8 mb-4">
{% t about_press_title %}
</h2>
<div class="md:px-6 grid grid-cols-1 md:grid-cols-3 gap-y-8 gap-x-6 mt-6">
{% for item in site.data.coverage %}
<a
class="no-underline hover:underline text-black max-w-xs justify-self-center {% if forloop.index <= 2 %} mb-4 {% endif %}"
href="{{ item.url }}"
target="_blank"
rel="noreferrer"
>
<div class="no-underline flex flex-col items-center">
<div class="flex flex-col">
<div class="font-xl italic text-center">{{ item.text }}</div>
</div>
<img
class="float-start w-32 mt-3 object-contain"
src="/assets/img/coverage/{{ item.image }}"
/>
</div>
</a>
{% endfor %}
</div>
<h2 class="text-2xl font-bold leading-tight text-gray-900 mt-8 mb-4">
{% t faq %}
</h2>
<h3 class="text-lg font-bold mb-2 bg-yellow-300 px-1 py-1">
{% t faq_how %}
</h3>
{% tf faq_how_answer.html %}
<h3 class="mt-5 text-lg font-bold mb-2 bg-yellow-300 px-1 py-1">
{% t faq_reporter %}
</h3>
{% tf faq_reporter_answer.html %}
<h3 class="mt-5 text-lg font-bold mb-2 bg-yellow-300 px-1 py-1">
{% t faq_provider %}
</h3>
{% t faq_provider_answer %}
<h3 class="mt-5 text-lg font-bold mb-2 bg-yellow-300 px-1 py-1">
{% t faq_org %}
</h3>
{% tf faq_org_answer.html %}
<h3 class="mt-5 text-lg font-bold mb-2 bg-yellow-300 px-1 py-1">
{% t faq_accurate %}
</h3>
{% t faq_accurate_answer %}
<h3 class="mt-5 text-lg font-bold mb-2 bg-yellow-300 px-1 py-1">
{% t faq_worked_on_this %}
</h3>
<p dir="ltr">
<span id="js-people-list">
{% for coordinator in site.data.coordinators %}
<a href="{{ coordinator[1] }}">{{ coordinator[0] }}</a>
{%- endfor -%}</span>.
<p>
</div>
<script src="assets/js/about-us.js"></script>