This repository has been archived by the owner on Oct 13, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 119
/
metaverse-agencies.html
277 lines (263 loc) · 9.52 KB
/
metaverse-agencies.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
---
---
<div class="wrapper home">
{% include sidebar.html %}
<section>
<div class="home-content">
{% capture content %}{% include partners.md %}{% endcapture %}
{{ content | markdownify }}
</div>
<h3>Provided Services</h3>
<table>
<tr>
<td class="service">
<span class="tag tag-wearable-design">Wearable Design</span>
</td>
<td>
3D Modeling skills to produce a wearable under the acceptance criteria
of Decentraland's DAO Curators Committee. Such us hats, t-shirts and
full-body skins.
</td>
</tr>
<tr>
<td class="service"><span class="tag tag-architecture">Architecture</span></td>
<td>
3D Modeling and SDK Development skills to create objects and spaces
ready to be placed in your Decentraland scene. Such as art galeries
and parkour courses.
</td>
</tr>
<tr>
<td class="service"><span class="tag tag-event-production">Event Production</span></td>
<td>
A company of producers that can help you set up an event in a DCL
venue. They can help find a venue for your needs, customizing the
scene, promoting the event, doing a live-stream and more.
</td>
</tr>
<tr>
<td class="service"><span class="tag tag-consulting">Consulting</span></td>
<td>
Studios that will guide you through the whole process, from sketching
ideas to launching your campaign to your audience.
</td>
</tr>
<tr>
<td class="service"><span class="tag tag-land-rental">Land Rental</span></td>
<td>
Land owners offering a place to locate your experience in
Decentraland's Genesis City.
</td>
</tr>
</table>
<div class="header partners">
<h1>Verified Partners</h1>
<div class="ui dropdown filter">
Filter
<i class="dropdown icon"></i>
<div class="ui vertical accordion menu">
{% assign scategories = site.data.partner-categories %}
{% for category in scategories %}
<div class="item">
<a class="title">
{{ category.name }}
<div class="info">
<div class="checks"></div>
<i class="dropdown icon"></i>
</div>
</a>
<div class="content">
<div class="ui form">
<div class="grouped fields">
{% for type in category.types %}
<div class="field">
<div class="ui checkbox">
<input
type="checkbox"
name="small"
data-category="{{ category.name }}"
data-value="{{ type }}"
/>
<label>{{ type }}</label>
</div>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% endfor %}
<div class="item actions">
<button id="clearButton" class="ui basic button inverted">
Clear
</button>
<button id="applyButton" class="ui basic button">Apply</button>
</div>
</div>
</div>
</div>
{% assign spartners = site.data.partners | sort: 'name' %} {% for partner in
spartners %} {% assign services = partner.tags | join: ';' %} {% assign
languages = partner.languages | join: ';' %} {% assign payments =
partner.payments | join: ';' %}
<div
class="providerContainer"
data-service="{{ services }}"
data-language="{{ languages }}"
data-payment="{{ payments }}"
data-region="{{ partner.region }}"
data-size="{{ partner.team_size }}"
>
<div
class="providerImage"
style="background: url('{{ partner.image }}');background-size: contain;background-position: center;background-repeat: no-repeat;"
>
<a href="{{ partner.default_link }}" target="_blank"></a>
</div>
<div class="textContainer">
<h3 style="margin:0;margin-bottom:0.2rem;">
<a href="{{ partner.default_link }}" target="_blank"
>{{ partner.name }}</a
>
</h3>
<div class="meta">
<div class="tags">
{% assign stags = partner.tags | sort %} {% for tag in stags %}
<span class="tag tag-{{ tag | slugify }}">{{ tag }}</span>
{% endfor %}
</div>
<div class="links">
{% if partner.website %}<a
href="{{ partner.website }}"
title="website"
class="social-icon"
>{% include social-icon.html icon="Website" %}</a
>{% endif %} {% if partner.email %}<a
href="mailto:{{ partner.email }}"
title="email"
class="social-icon"
>{% include social-icon.html icon="Email" %}</a
>{% endif %} {% if partner.discord %}<a
href="{{ partner.discord }}"
title="discord"
class="social-icon"
>{% include social-icon.html icon="Discord" %}</a
>{% endif %} {% if partner.twitter %}<a
href="{{ partner.twitter }}"
title="twitter"
class="social-icon"
>{% include social-icon.html icon="Twitter" %}</a
>{% endif %} {% if partner.instagram %}<a
href="{{ partner.instagram }}"
title="instagram"
class="social-icon"
>{% include social-icon.html icon="Instagram" %}</a
>{% endif %} {% if partner.linkedin %}<a
href="{{ partner.linkedin }}"
title="linkedin"
class="social-icon"
>{% include social-icon.html icon="Linkedin" %}</a
>{% endif %} {% if partner.vimeo %}<a
href="{{ partner.vimeo }}"
title="vimeo"
class="social-icon"
>{% include social-icon.html icon="Vimeo" %}</a
>{% endif %} {% if partner.soundcloud %}<a
href="{{ partner.soundcloud }}"
title="soundcloud"
class="social-icon"
>{% include social-icon.html icon="Soundcloud" %}</a
>{% endif %}
</div>
</div>
<input
type="checkbox"
id="partner-{{ partner.partnerId }}"
class="read-more-state"
/>
<p>{{ partner.description }}</p>
<table>
<tr class="region" data-continent="{{ partner.region }}">
<td>Region</td>
<td>{{ partner.location }}</td>
</tr>
<tr>
<td>Team size</td>
<td>{{ partner.team_size }}</td>
</tr>
<tr>
<td>Languages</td>
<td>{{ partner.languages | join: ", " }}</td>
</tr>
<tr>
<td>Payment methods</td>
<td>{{ partner.payments | join: ", " }}</td>
</tr>
</table>
<label
class="read-more-trigger"
for="partner-{{ partner.partnerId }}"
></label>
</div>
</div>
{% endfor %}
<p class="attribution">
This registry is lead by an independant team supported by
<a
href="https://governance.decentraland.org/proposal/?id=81af5b00-02e6-11ed-8f44-ef1722f0509f"
>Decentraland’s DAO</a
>. If your organization is not on this list and you have experience
building content for Decentraland, please
<a href="https://dclstudios.typeform.com/to/L49y84qX"
>fill out this form</a
>.
</p>
{% include newsletter.html %} {%- comment -%} {% include override-color.html
accent_color="#ff2d55" %} {%- endcomment -%} {% include override-color.html
accent_color="#f05" %} {% include copy-code.html %}
</section>
</div>
<script src="{{ site.baseurl }}/js/partnerFilters.js"></script>
<script>
$(".ui.dropdown").dropdown({
onHide: () => isDropdownHideable(),
})
$(".ui.accordion").accordion()
const FILTER = $(".ui.dropdown.filter")
const CHECKBOXS = $(".ui.dropdown.filter .field input")
const PARTNER_CARDS = $(".providerContainer")
const CHECK_COUNTERS = $(".ui.dropdown.filter .info > .checks")
CHECKBOXS.on('click', ({ target }) => {
handleCheckboxClick($(target))
})
$(document).on("click", ({ target }) => {
const $target = $(target)
const isIconSelected = $target.is(".ui.dropdown.filter > .dropdown.icon")
const isDropdownSelected = $target.is(".ui.dropdown.filter")
const isDropdownChildSelected = $target.is(".ui.dropdown.filter *")
const isDropdownVisible =
FILTER.hasClass("visible") &&
FILTER.hasClass("active")
const isCheckboxSectionSelected =
$target.is(".ui.dropdown.filter .field") ||
$target.is(".ui.dropdown.filter .field *")
if (isIconSelected || isDropdownSelected) {
if (isDropdownVisible) {
hideDropdown(FILTER)
} else {
setIsDropdownHideable(false)
}
} else if (!isDropdownChildSelected) {
hideDropdown(FILTER)
}
if (isCheckboxSectionSelected) {
let checkbox = $target.find("input").first()
if (checkbox.length === 0) {
checkbox = $target.siblings("input").first()
}
handleCheckboxSectionClick(checkbox)
}
})
$("#applyButton").unbind().click(() => applyFilters(FILTER, PARTNER_CARDS))
$("#clearButton").unbind().click(() => clearFilters(CHECKBOXS, CHECK_COUNTERS))
</script>