-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtemplate.html
202 lines (167 loc) · 9.56 KB
/
template.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{ category }} / Toolkit </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description"
content="A directory of Free and Open Source Software (FOSS) to help change makers amplify their impact." />
<meta name="referrer" content="no-referrer">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="image_src" href="https://indic.page/static/thumb.png" />
<link rel="icon" type="image/x-icon" href="https://indic.page/static/thumb.png" />
<meta property="og:title" content="{{ category }} / Toolkit " />
<meta property="og:description"
content="A directory of Free and Open Source Software (FOSS) to help change makers amplify their impact." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://t4glabs.github.io/Toolkit/{{ category | lower }}.html" />
<meta property="og:image" content="https://t4glabs.github.io/Toolkit/static/thumb.png" />
<link href='https://fonts.googleapis.com/css?family=Fira+Sans:400&display=swap' rel='stylesheet' type='text/css' />
<link href="static/style.css" rel="stylesheet" type="text/css" />
<script defer data-domain="t4glabs.github.io/toolkit" src="https://analytics.t4glabs.org/js/script.js"></script>
</head>
<body>
<nav class="nav">
<div class="wrap">
<header class="header">
<a href="#" id="burger"><span></span><span></span><span></span></a>
<div class="logo">
<!-- <a href="/"><img src="static/logo.svg" alt="Toolkit page" /></a> -->
<h2 class="logo-head" style="color: black; margin-top: 20px;"> <b> <a href="index.html"> Toolkit </a></b></h2>
<p><input id="search" class="search" type="text" placeholder="Search this page" /></p>
<!-- <p class="slogan">A directory of Free and Open Source Software (FOSS), Frameworks, Showcases to help
change makers leverage technology to amplify their impact. Please use the chat box to talk to
the community about NGO's requirements, share a tool, interesting problem statements that have
real world impact etc.</p> -->
</div>
<div class="intro">
<p class="slogan">A directory to support <a style="color: #666; border-bottom: 2px solid #5fd38d;" href="https://oasishq.org/">OASIS - Open-source Alliance for Social Innovation & Sustainability</a>, Free and Open Source Software (FOSS), Frameworks, Showcases to help change makers leverage technology to amplify their impact.</p>
<p><input id="search2" class="search" type="text" placeholder="Search this page" /></p>
</div>
</header>
</div>
<!-- <div class="btn-section sub-wrap">
<div class="submit-container" style="text-align: end;">
<a href="https://ee.kobotoolbox.org/jzaCg4UR" target="_blank" class="kit-submit box"> + Submit Tech Need</a>
</div>
</div> -->
<div class="btn-section sub-wrap">
<div class="submit-container" style="text-align: end;">
<a href="mailto:forum@t4glabs.org?subject=Technical Requirement" target="_blank" class="kit-submit box"> + Email us your tech need</a>
</div>
</div>
</nav>
<div class="wrap">
<div class="container">
<section class="sidebar" id="sidebar">
<ul class="index">
{% for c in categories %}
<li class="{% if c == category %}selected{% endif %}"><a
href="{{ c | lower|replace(' ', '-') }}.html">{{ c }} ({{ categories[c] }})</a></li>
{% endfor %}
</ul>
</section>
<section class="content">
{% if ((list_tags | length) + (list_filters | length)) > 0 %}
<a href="#" id="toggle-filters">Filter →</a>
{% endif %}
<section class="section" id="organisations">
<h3>{{ category }} ({{ list | length }})</h3>
<div class="filters" id="filters">
{% if list_filters | length > 1 %}
<div class="languages">
{% for l in list_filters %}
<label id="lang-{{ l }}">
<input type="checkbox" class="filter-language" for="lang-{{ l }}" checked
value="{{ l | lower }}" />{{ l }}
</label>
{% endfor %}
<a href="#" class="toggle-filters" data-target="language" data-state="on">← Toggle</a>
</div>
{% endif %}
{% if list_tags | length > 1 %}
<div class="tags">
{% for l in list_tags %}
<label id="tag-{{ l }}">
<input type="checkbox" class="filter-tag" for="tag-{{ l }}" checked
value="{{ l | lower }}" />{{ l }}
</label>
{% endfor %}
<a href="#" class="toggle-filters" data-target="tag" data-state="on">← Toggle</a>
</div>
{% endif %}
</div>
<ul id="items">
{% for i in list %}
<li class="item" data-filters="{% for v in i.filters %}{{ v | lower}}|{% endfor %}"
data-tags="{% for v in i.tags %}{{ v | lower}}|{% endfor %}">
<h2 class="title">
{% for t in i.tags %}
<span class="tag">{{ t }}</span>
{% endfor %}
<a href="{{ i.url }}" class="link" target="_blank">{{ i.name }}</a>
</h2>
<p class="description">{{ i.description }}</p>
<div class="tags">
{% for l in i.filters %}
<span class="tag lang">{{ l }}</span>
{% endfor %}
<a href="" class="reveal">+{{ (i.filters | length) - 5 }} ← View all</a>
</div>
</li>
{% endfor %}
</ul>
</section>
</section><!-- content -->
</div><!-- container -->
<!-- <div class="submit-container" style="text-align: center;">
<a href="https://ee.kobotoolbox.org/x/pDNbK4fD" target="_blank" class="kit-submit box">Submit new Toolkit →</a>
</div> -->
<footer>
<div class="foot-link">
Credits: OASIS Community - <a href="https://www.linkedin.com/in/kailashnadh/" target="_blank"
class="foot-link">Kailash Nadh</a>, Samagata Foundation, <a
href="https://www.linkedin.com/company/fossunited/" target="_blank" class="foot-link"> FOSS
United</a>,<a href="https://www.linkedin.com/company/zerodha/" target="_blank" class="foot-link">
Zerodha</a>,<a href="https://www.linkedin.com/company/omidyar-network-india/" target="_blank"
class="foot-link"> Omidyar Network</a>,<a href="https://www.linkedin.com/company/tinkerhub/"
target="_blank" class="foot-link"> TinkerHub</a>,<a
href="https://www.linkedin.com/company/tech4good-community/" target="_blank" class="foot-link">
Tech4Good Community</a>,<a href="https://www.linkedin.com/showcase/project-tech4dev/"
target="_blank" class="foot-link"> Project Tech4Dev</a>,<a
href="https://www.linkedin.com/company/t4glabs/" target="_blank" class="foot-link"> Tech4Good
Labs</a> , <a href="https://www.linkedin.com/school/kalvium/" target="_blank" class="foot-link">
Kalvium</a>,<a href="https://www.linkedin.com/company/samanvay-research-and-development-foundation/"
target="_blank" class="foot-link"> Samanvay Foundation</a>,<a
href="https://www.linkedin.com/company/ashoka/" target="_blank" class="foot-link"> Ashoka ASPIRe</a>
,<a href="https://www.linkedin.com/company/reap-benefit-foundation/" target="_blank" class="foot-link">
Reap Benefit</a> and many more.
</div>
Inspired from <a href="https://github.com/knadh/indic.page">knadh/indic.page</a> and uses <a
href="https://github.com/knadh/dirmaker" target="_blank">knadh/dirmaker,</a> <a
href=" https://www.chatwoot.com/" target="_blank">Chatwoot,</a> <a
href="https://www.kobotoolbox.org/" target="_blank">Kobotoolbox</a><br>
Edit this page at <a href="https://github.com/t4glabs/toolkit">t4glabs/toolkit</a>
— Licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a>.<br>
<!-- Credits: Project Genesis Community - <a href="https://www.linkedin.com/in/kailashnadh/" target="_blank">Kailash Nadh</a>, Samagata Foundation, <a href="https://www.linkedin.com/company/fossunited/" target="_blank"> FOSS United</a>,<a href="https://www.linkedin.com/company/zerodha/" target="_blank"> Zerodha</a>,<a href="https://www.linkedin.com/company/omidyar-network-india/" target="_blank"> Omidyar Network</a>,<a href="https://www.linkedin.com/company/tinkerhub/" target="_blank"> TinkerHub</a>,<a href="https://www.linkedin.com/company/tech4good-community/" target="_blank"> Tech4Good Community</a>,<a href="https://www.linkedin.com/showcase/project-tech4dev/" target="_blank"> Project Tech4Dev</a>,<a href="https://www.linkedin.com/company/t4glabs/" target="_blank"> Tech4Good Labs</a> , <a href="https://www.linkedin.com/school/kalvium/" target="_blank"> Kalvium</a>,<a href="https://www.linkedin.com/company/samanvay-research-and-development-foundation/" target="_blank"> Samanvay Foundation</a>,<a href="https://www.linkedin.com/company/ashoka/" target="_blank"> Ashoka ASPIRe</a> ,<a href="https://www.linkedin.com/company/reap-benefit-foundation/" target="_blank"> Reap Benefit</a> and many more. -->
</footer>
<script src="static/main.js"></script>
<script>
window.chatwootSettings = {"position":"right","type":"expanded_bubble","launcherTitle":"Chat with us"};
(function(d,t) {
var BASE_URL="https://genesis.t4glabs.org";
var g=d.createElement(t),s=d.getElementsByTagName(t)[0];
g.src=BASE_URL+"/packs/js/sdk.js";
g.defer = true;
g.async = true;
s.parentNode.insertBefore(g,s);
g.onload=function(){
window.chatwootSDK.run({
websiteToken: 'RZwquYTxbi2p6N6v6wLZvsGb',
baseUrl: BASE_URL
})
}
})(document,"script");
</script>
</div>
</body>
</html>