dotfolio-theme 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/LICENSE +21 -0
- data/LICENSE.txt +21 -0
- data/README.md +50 -0
- data/_data/theme.yml +88 -0
- data/_includes/footer.html +18 -0
- data/_includes/head.html +24 -0
- data/_includes/hero.html +32 -0
- data/_includes/nav.html +39 -0
- data/_includes/projects.html +36 -0
- data/_includes/recent-posts.html +32 -0
- data/_layouts/default.html +11 -0
- data/_layouts/home.html +10 -0
- data/_layouts/page.html +13 -0
- data/_layouts/post.html +23 -0
- data/_layouts/search.html +13 -0
- data/assets/css/main.css +1478 -0
- data/assets/css/tailwind.css +411 -0
- data/assets/icons/angular.svg +1 -0
- data/assets/icons/bootstrap.svg +1 -0
- data/assets/icons/css.svg +1 -0
- data/assets/icons/django.svg +1 -0
- data/assets/icons/docker.svg +1 -0
- data/assets/icons/gatsbyjs.svg +1 -0
- data/assets/icons/git.svg +1 -0
- data/assets/icons/github.svg +1 -0
- data/assets/icons/heroku.svg +1 -0
- data/assets/icons/html5.svg +1 -0
- data/assets/icons/instagram.svg +1 -0
- data/assets/icons/javascript.svg +1 -0
- data/assets/icons/jekyll.svg +1 -0
- data/assets/icons/jira.svg +1 -0
- data/assets/icons/linkedin.svg +1 -0
- data/assets/icons/mysql.svg +1 -0
- data/assets/icons/netlify.svg +1 -0
- data/assets/icons/php.svg +1 -0
- data/assets/icons/postgresql.svg +1 -0
- data/assets/icons/python.svg +1 -0
- data/assets/icons/rubyonrails.svg +1 -0
- data/assets/icons/symfony.svg +1 -0
- data/assets/icons/tailwind.svg +1 -0
- data/assets/icons/twitter.svg +1 -0
- data/assets/icons/vscode.svg +1 -0
- data/assets/images/about.txt +6 -0
- data/assets/images/android-chrome-192x192.png +0 -0
- data/assets/images/android-chrome-512x512.png +0 -0
- data/assets/images/apple-touch-icon.png +0 -0
- data/assets/images/favicon-16x16.png +0 -0
- data/assets/images/favicon-32x32.png +0 -0
- data/assets/images/favicon.ico +0 -0
- data/assets/images/profile.jpg +0 -0
- data/assets/images/site.webmanifest +1 -0
- data/assets/js/search.js +48 -0
- data/assets/js/theme-switcher.js +16 -0
- data/assets/projects/project.png +0 -0
- data/bin/dotfolio-theme +3 -0
- data/lib/dotfolio-theme/installer.rb +42 -0
- data/lib/dotfolio-theme/templates/_config.yml +101 -0
- data/lib/dotfolio-theme/templates/about.markdown +75 -0
- data/lib/dotfolio-theme/templates/notes-index.html +38 -0
- data/lib/dotfolio-theme/templates/search.json +13 -0
- metadata +134 -0
|
@@ -0,0 +1,411 @@
|
|
|
1
|
+
@tailwind base;
|
|
2
|
+
@tailwind components;
|
|
3
|
+
@tailwind utilities;
|
|
4
|
+
|
|
5
|
+
/* ----------------------------------------
|
|
6
|
+
Base Styles (global resets if needed)
|
|
7
|
+
---------------------------------------- */
|
|
8
|
+
@layer base {
|
|
9
|
+
html {
|
|
10
|
+
@apply scroll-smooth;
|
|
11
|
+
font-family: "Source Sans 3", sans-serif;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
body {
|
|
15
|
+
@apply text-gray-800 bg-amber-50 bg-[radial-gradient(#e5e7eb_1px,transparent_1px)] dark:text-neutral-200 dark:bg-gray-900 dark:bg-[radial-gradient(#2a2a2a_1px,transparent_1px)] [background-size:16px_16px] antialiased;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
nav {
|
|
19
|
+
@apply max-w-[75ch] mx-auto px-6 py-8 flex justify-between items-center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
main {
|
|
23
|
+
@apply max-w-[75ch] mx-auto px-6 pt-16;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
footer {
|
|
27
|
+
@apply max-w-[75ch] mx-auto px-6 py-7 flex justify-between text-gray-500;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
section {
|
|
31
|
+
@apply pb-16
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
article.post header {
|
|
35
|
+
@apply mb-16;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
article.post content {
|
|
39
|
+
@apply max-w-none;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.back {
|
|
43
|
+
@apply mt-12;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.back .link {
|
|
47
|
+
@apply inline-flex items-center text-blue-600 dark:text-blue-300 hover:underline text-sm font-medium;
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@layer components {
|
|
52
|
+
/* ----------------------------------------
|
|
53
|
+
Navigation
|
|
54
|
+
---------------------------------------- */
|
|
55
|
+
nav .nav-logo {
|
|
56
|
+
@apply text-lg font-semibold text-amber-50 dark:text-gray-900 px-2 bg-blue-600 dark:bg-blue-300;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
nav .nav-links {
|
|
60
|
+
@apply space-x-6 text-sm text-blue-500 dark:text-blue-300 flex items-center;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
nav .theme-switcher {
|
|
64
|
+
@apply flex items-center;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
nav .theme-switcher .sun {
|
|
68
|
+
@apply hidden dark:inline-flex;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
nav .theme-switcher .sun svg {
|
|
72
|
+
@apply w-6 h-6;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
nav .theme-switcher .sun path {
|
|
76
|
+
@apply dark:stroke-blue-300;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
nav .theme-switcher .moon {
|
|
80
|
+
@apply inline-flex dark:hidden;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
nav .theme-switcher .moon svg {
|
|
84
|
+
@apply w-5 h-5;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
nav .theme-switcher .moon path {
|
|
88
|
+
@apply fill-blue-500;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
/* ----------------------------------------
|
|
92
|
+
Footer
|
|
93
|
+
---------------------------------------- */
|
|
94
|
+
footer .copyright {
|
|
95
|
+
@apply my-auto;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
footer .link {
|
|
99
|
+
@apply text-blue-600 dark:text-blue-300 hover:text-blue-800 dark:hover:text-blue-200;
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
footer .social-links {
|
|
103
|
+
@apply flex items-center space-x-3 p-2;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
footer .social-icon {
|
|
107
|
+
@apply h-auto w-6 opacity-50 dark:opacity-70;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/* ----------------------------------------
|
|
111
|
+
Sections
|
|
112
|
+
---------------------------------------- */
|
|
113
|
+
main.home .heading {
|
|
114
|
+
@apply text-3xl font-semibold text-blue-600 dark:text-blue-300 mb-2;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
main.home .subheading {
|
|
118
|
+
@apply mb-8;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
main.home .more {
|
|
122
|
+
@apply mt-10;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
main.home .more a {
|
|
126
|
+
@apply inline-flex items-center text-blue-500 dark:text-blue-300;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
main.home .more svg {
|
|
130
|
+
@apply w-5 h-5 ml-2;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/* ----------------------------------------
|
|
134
|
+
Hero Section
|
|
135
|
+
---------------------------------------- */
|
|
136
|
+
.hero .nametag {
|
|
137
|
+
@apply flex items-center gap-4 mb-4;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
.hero .nametag .nametag-avatar {
|
|
141
|
+
@apply w-24 h-24 rounded-full object-cover border-2 border-lime-500 dark:border-lime-300;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.hero .nametag .nametag-greeting {
|
|
145
|
+
@apply sm:text-2xl md:text-3xl text-lg font-semibold;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.hero .nametag .nametag-name {
|
|
149
|
+
@apply text-blue-600 dark:text-blue-300;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.hero .nametag .nametag-description {
|
|
153
|
+
@apply sm:text-lg md:text-xl text-lg;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
.hero .nametag .nametag-title {
|
|
157
|
+
@apply border-b-2 border-lime-500 dark:border-lime-300;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.hero .bio {
|
|
161
|
+
@apply my-12 pl-4 border-l-2 border-lime-500 dark:border-lime-300 text-lg;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.hero .tools {
|
|
165
|
+
@apply mb-4 text-center uppercase text-xs font-medium;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.hero ul {
|
|
169
|
+
@apply flex flex-wrap justify-center;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
.hero li {
|
|
173
|
+
@apply mx-2 md:mx-3 my-3;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.hero li div {
|
|
177
|
+
@apply flex justify-center cursor-pointer;
|
|
178
|
+
}
|
|
179
|
+
|
|
180
|
+
.hero li p {
|
|
181
|
+
@apply pt-2 text-xs text-center;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
.hero li .icon {
|
|
185
|
+
@apply w-10 h-auto opacity-65 dark:opacity-95;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
/* ----------------------------------------
|
|
189
|
+
Projects
|
|
190
|
+
---------------------------------------- */
|
|
191
|
+
.projects .project-grid {
|
|
192
|
+
@apply grid grid-cols-1 md:grid-cols-2 gap-6;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.projects .clickable-area {
|
|
196
|
+
@apply block transition-transform duration-200 hover:scale-[1.02] h-full;
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.projects .card {
|
|
200
|
+
@apply rounded-xl overflow-hidden cursor-pointer flex flex-col h-full;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.projects .image-container {
|
|
204
|
+
@apply p-4;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
.projects .image-container img {
|
|
208
|
+
@apply w-full h-48 object-cover rounded-md p-4 bg-lime-500/20 dark:bg-lime-300/20 shadow-md;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.projects .content-container {
|
|
212
|
+
@apply px-4 pb-4 mb-auto;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.projects .content-container .title {
|
|
216
|
+
@apply text-lg mb-2;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.projects .content-container .description {
|
|
220
|
+
@apply text-sm text-gray-400 dark:text-gray-500;
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
/* ----------------------------------------
|
|
224
|
+
Posts
|
|
225
|
+
---------------------------------------- */
|
|
226
|
+
.posts ul {
|
|
227
|
+
@apply space-y-8;
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
.posts li {
|
|
231
|
+
@apply pl-4 border-l-2 border-lime-500;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.posts .title {
|
|
235
|
+
@apply text-lg hover:underline;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.posts .excerpt {
|
|
239
|
+
@apply text-sm text-gray-400 dark:text-gray-500 mt-1;
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
/* ----------------------------------------
|
|
243
|
+
Page
|
|
244
|
+
---------------------------------------- */
|
|
245
|
+
.content {
|
|
246
|
+
@apply max-w-3xl mx-auto;
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
/* Headings */
|
|
250
|
+
.content h1 {
|
|
251
|
+
@apply text-3xl font-bold leading-tight mb-4;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.content h2 {
|
|
255
|
+
@apply text-2xl font-semibold mb-3;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.content h3 {
|
|
259
|
+
@apply text-xl font-semibold mb-2;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
.content h4 {
|
|
263
|
+
@apply text-lg font-semibold mb-2;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.content h5 {
|
|
267
|
+
@apply text-base font-semibold mb-1;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
.content h6 {
|
|
271
|
+
@apply text-sm font-semibold mb-1 text-gray-500;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
/* Paragraphs */
|
|
275
|
+
.content p {
|
|
276
|
+
@apply leading-relaxed mb-4;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
/* Links */
|
|
280
|
+
.content a {
|
|
281
|
+
@apply text-blue-600 dark:text-blue-300 hover:text-blue-800 dark:hover:text-blue-200;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
/* Lists */
|
|
285
|
+
.content ul {
|
|
286
|
+
@apply list-disc pl-6 mb-4;
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
.content ol {
|
|
290
|
+
@apply list-decimal pl-6 mb-4;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
.content li {
|
|
294
|
+
@apply mb-1;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
/* Blockquote */
|
|
298
|
+
.content blockquote {
|
|
299
|
+
@apply border-l-2 border-lime-500 dark:border-lime-300 pl-4 italic text-gray-600 dark:text-gray-400 my-4;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
/* Code */
|
|
303
|
+
.content code.highlighter-rouge {
|
|
304
|
+
@apply bg-blue-950 text-lime-300 px-1 py-0.5 rounded text-sm;
|
|
305
|
+
}
|
|
306
|
+
|
|
307
|
+
.content pre {
|
|
308
|
+
@apply bg-blue-950 text-lime-500 p-4 rounded-lg overflow-x-auto my-4;
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
.content pre code {
|
|
312
|
+
@apply bg-transparent p-0 text-sm;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
/* Horizontal Rule */
|
|
316
|
+
.content hr {
|
|
317
|
+
@apply my-8 border-gray-300;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
/* Images */
|
|
321
|
+
.content img {
|
|
322
|
+
@apply rounded-lg my-4;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
/* Tables */
|
|
326
|
+
.content table {
|
|
327
|
+
@apply w-full border-collapse my-6 text-sm;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
.content th {
|
|
331
|
+
@apply border-b-2 border-gray-300 text-left p-2 font-semibold;
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
.content td {
|
|
335
|
+
@apply border-b border-gray-200 p-2;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/* Inline elements */
|
|
339
|
+
.content strong {
|
|
340
|
+
@apply font-semibold;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
.content em {
|
|
344
|
+
@apply italic;
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
.content del {
|
|
348
|
+
@apply line-through;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
/* Small / misc */
|
|
352
|
+
.content small {
|
|
353
|
+
@apply text-sm text-gray-500;
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
.content mark {
|
|
357
|
+
@apply bg-yellow-200 px-1;
|
|
358
|
+
}
|
|
359
|
+
|
|
360
|
+
/* ----------------------------------------
|
|
361
|
+
Notes Index
|
|
362
|
+
---------------------------------------- */
|
|
363
|
+
.notes-index .heading {
|
|
364
|
+
@apply text-3xl font-semibold text-blue-600 dark:text-blue-300 border-b-2 border-lime-500 dark:border-lime-300 inline-flex mb-2;
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
.notes-index .subheading {
|
|
368
|
+
@apply mb-5;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
.notes-index .search-input {
|
|
372
|
+
@apply text-gray-800 p-2 border-2 rounded w-full mb-8;
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
.notes-index .search-results {
|
|
376
|
+
@apply space-y-8;
|
|
377
|
+
}
|
|
378
|
+
|
|
379
|
+
.notes-index .paginated-posts {
|
|
380
|
+
@apply space-y-8;
|
|
381
|
+
}
|
|
382
|
+
|
|
383
|
+
.notes-index li {
|
|
384
|
+
@apply mb-5;
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
.notes-index li.no-results {
|
|
388
|
+
@apply mb-5 ;
|
|
389
|
+
}
|
|
390
|
+
|
|
391
|
+
.notes-index h3 {
|
|
392
|
+
@apply text-lg hover:underline;
|
|
393
|
+
}
|
|
394
|
+
|
|
395
|
+
.notes-index p {
|
|
396
|
+
@apply text-sm mt-1 text-gray-400 dark:text-gray-500;
|
|
397
|
+
}
|
|
398
|
+
|
|
399
|
+
.notes-index .pagination {
|
|
400
|
+
@apply mt-5 max-w-[75ch] mx-auto flex justify-between;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.notes-index .pagination a {
|
|
404
|
+
@apply text-blue-500 dark:text-blue-300 mt-10;
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
::selection {
|
|
409
|
+
background: rgb(65, 187, 73);
|
|
410
|
+
color: white;
|
|
411
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 32 32"><path fill="currentColor" d="M13.24 16.859h5.51l-2.755-6.542zM15.995.01L.917 5.317l2.297 19.677l12.781 6.995l12.786-6.984l2.297-19.688L15.995.015zm9.411 24.396H21.89l-1.896-4.667h-8l-1.896 4.667H6.582l9.411-20.865z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 128 128"><path fill="currentColor" d="M27.235 13.885c-7.177 0-12.486 6.284-12.249 13.099c.228 6.546-.068 15.026-2.203 21.94c-2.14 6.936-5.76 11.319-11.673 11.883v6.387c5.913.563 9.533 4.947 11.673 11.883c2.135 6.914 2.43 15.394 2.203 21.94c-.238 6.815 5.072 13.098 12.249 13.098h73.54c7.177 0 12.486-6.284 12.249-13.098c-.228-6.546.068-15.026 2.202-21.94c2.14-6.935 5.751-11.319 11.664-11.883v-6.387c-5.913-.563-9.523-4.947-11.664-11.883c-2.134-6.914-2.43-15.394-2.202-21.94c.237-6.815-5.072-13.099-12.25-13.099zm58.114 61.686c0 9.384-7.002 15.073-18.621 15.073H45.306a.49.49 0 0 1-.491-.491V37.827a.49.49 0 0 1 .491-.492h21.309c9.689 0 16.047 5.246 16.047 13.3c0 5.653-4.277 10.713-9.727 11.6v.296c7.418.813 12.414 5.948 12.414 13.04M64.571 44.096H53.293v15.922h9.5c7.342 0 11.391-2.955 11.391-8.238c0-4.95-3.481-7.684-9.613-7.684m-11.278 22.24v17.548h11.695c7.645 0 11.695-3.066 11.695-8.83c0-5.763-4.163-8.718-12.187-8.718z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 24 24"><path fill="currentColor" d="m3 2l1.578 17.834L12 22l7.468-2.165L21 2zm13.3 14.722l-4.293 1.204H12l-4.297-1.204l-.297-3.167h2.108l.15 1.526l2.335.639l2.34-.64l.245-3.05h-7.27l-.187-2.006h7.64l.174-2.006H6.924l-.176-2.006h10.506z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 32 32"><path fill="currentColor" d="M14.859 0h5.234v24.219c-2.682.51-4.656.714-6.797.714c-6.385 0-9.714-2.885-9.714-8.427c0-5.333 3.531-8.797 9-8.797c.849 0 1.495.068 2.276.271zm0 12.193a5.2 5.2 0 0 0-1.766-.276c-2.651 0-4.177 1.63-4.177 4.49c0 2.786 1.458 4.313 4.146 4.313c.578 0 1.052-.031 1.797-.135v-8.396zm13.558-4.115v12.13c0 4.177-.302 6.188-1.219 7.917c-.849 1.667-1.974 2.719-4.281 3.875l-4.859-2.313c2.307-1.089 3.432-2.036 4.146-3.5c.745-1.495.984-3.229.984-7.781V8.078zM23.188.026h5.229v5.37h-5.229z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 640 640"><path fill="currentColor" d="M349.9 300.3h-66.1v-59.4h66.1zm0-204.3h-66.1v60.7h66.1zm78.2 144.8H362v59.4h66.1zm-156.3-72.1h-66.1v60.1h66.1zm78.1 0h-66.1v60.1h66.1zm276.8 100c-14.4-9.7-47.6-13.2-73.1-8.4c-3.3-24-16.7-44.9-41.1-63.7l-14-9.3l-9.3 14c-18.4 27.8-23.4 73.6-3.7 103.8c-8.7 4.7-25.8 11.1-48.4 10.7H2.4c-8.7 50.8 5.8 116.8 44 162.1c37.1 43.9 92.7 66.2 165.4 66.2c157.4 0 273.9-72.5 328.4-204.2c21.4.4 67.6.1 91.3-45.2c1.5-2.5 6.6-13.2 8.5-17.1zm-511.1-27.9h-66v59.4h66.1v-59.4zm78.1 0h-66.1v59.4h66.1zm78.1 0h-66.1v59.4h66.1zm-78.1-72.1h-66.1v60.1h66.1z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 24 24"><path fill="currentColor" d="M12 24C5.373 24 0 18.627 0 12S5.373 0 12 0s12 5.373 12 12s-5.373 12-12 12m10-11.908h-6.452v1.834h4.424c-.645 2.753-2.674 5.046-5.346 5.964L4.027 9.34c1.106-3.211 4.24-5.505 7.835-5.505c2.765 0 5.254 1.377 6.82 3.487l1.383-1.193C18.22 3.651 15.272 2 11.862 2C7.069 2 3.014 5.395 2 9.89L14.165 22C18.59 20.899 22 16.862 22 12.091zM2 12c0 2.593 1.018 5.092 2.963 7.037S9.5 22 12 22z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 16 16"><path fill="currentColor" d="M15.698 7.287L8.712.302a1.03 1.03 0 0 0-1.457 0l-1.45 1.45l1.84 1.84a1.223 1.223 0 0 1 1.55 1.56l1.773 1.774a1.224 1.224 0 0 1 1.267 2.025a1.226 1.226 0 0 1-2.001-1.334L8.579 5.963v4.353q.177.085.324.231a1.226 1.226 0 1 1-1.332-.267V5.887a1.226 1.226 0 0 1-.666-1.608L5.093 2.465l-4.79 4.79a1.03 1.03 0 0 0 0 1.457l6.986 6.986a1.03 1.03 0 0 0 1.457 0l6.953-6.953a1.03 1.03 0 0 0 0-1.458"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 24 24"><path fill="currentColor" fill-rule="evenodd" d="M12 2C6.475 2 2 6.475 2 12a9.99 9.99 0 0 0 6.838 9.488c.5.087.687-.213.687-.476c0-.237-.013-1.024-.013-1.862c-2.512.463-3.162-.612-3.362-1.175c-.113-.288-.6-1.175-1.025-1.413c-.35-.187-.85-.65-.013-.662c.788-.013 1.35.725 1.538 1.025c.9 1.512 2.338 1.087 2.912.825c.088-.65.35-1.087.638-1.337c-2.225-.25-4.55-1.113-4.55-4.938c0-1.088.387-1.987 1.025-2.687c-.1-.25-.45-1.275.1-2.65c0 0 .837-.263 2.75 1.024a9.3 9.3 0 0 1 2.5-.337c.85 0 1.7.112 2.5.337c1.912-1.3 2.75-1.024 2.75-1.024c.55 1.375.2 2.4.1 2.65c.637.7 1.025 1.587 1.025 2.687c0 3.838-2.337 4.688-4.562 4.938c.362.312.675.912.675 1.85c0 1.337-.013 2.412-.013 2.75c0 .262.188.574.688.474A10.02 10.02 0 0 0 22 12c0-5.525-4.475-10-10-10"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 128 128"><path fill="currentColor" d="M102.1 2H25.9C19.3 2 14 7.3 14 13.9v100.3c0 6.6 5.3 11.9 11.9 11.9h76.3c6.6 0 11.9-5.3 11.9-11.9V13.9C114 7.3 108.7 2 102.1 2M37 108.7V80.5l14.1 14.1zm53 .3H76.9l.1-.2V59.4s3.1-11.8-39.7 4.8c-.1.2-.2-45.7-.2-45.7l13.9-.1v29.4s39-15.4 39 11.7zm-5.2-73H70c5.3-6 10.2-17 10.2-17h15.3s-2.6 7-10.7 17"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 24 24"><path fill="currentColor" d="m3 2l1.578 17.824L12 22l7.467-2.175L21 2zm14.049 6.048H9.075l.172 2.016h7.697l-.626 6.565l-4.246 1.381l-4.281-1.455l-.288-2.932h2.024l.16 1.411l2.4.815l2.346-.763l.297-3.005H7.416l-.562-6.05h10.412z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 16 16"><path fill="currentColor" d="M8 5.67C6.71 5.67 5.67 6.72 5.67 8S6.72 10.33 8 10.33S10.33 9.28 10.33 8S9.28 5.67 8 5.67M15 8c0-.97 0-1.92-.05-2.89c-.05-1.12-.31-2.12-1.13-2.93c-.82-.82-1.81-1.08-2.93-1.13C9.92 1 8.97 1 8 1s-1.92 0-2.89.05c-1.12.05-2.12.31-2.93 1.13C1.36 3 1.1 3.99 1.05 5.11C1 6.08 1 7.03 1 8s0 1.92.05 2.89c.05 1.12.31 2.12 1.13 2.93c.82.82 1.81 1.08 2.93 1.13C6.08 15 7.03 15 8 15s1.92 0 2.89-.05c1.12-.05 2.12-.31 2.93-1.13c.82-.82 1.08-1.81 1.13-2.93c.06-.96.05-1.92.05-2.89m-7 3.59c-1.99 0-3.59-1.6-3.59-3.59S6.01 4.41 8 4.41s3.59 1.6 3.59 3.59s-1.6 3.59-3.59 3.59m3.74-6.49c-.46 0-.84-.37-.84-.84s.37-.84.84-.84s.84.37.84.84a.8.8 0 0 1-.24.59a.8.8 0 0 1-.59.24Z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 24 24"><path fill="currentColor" d="M6 3a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h12a3 3 0 0 0 3-3V6a3 3 0 0 0-3-3zm7.334 13.055q1.08.87 2.156.858q.66 0 1.012-.242a.75.75 0 0 0 .341-.66a.97.97 0 0 0-.34-.748q-.352-.307-1.332-.616q-1.177-.34-1.815-.88q-.626-.54-.638-1.507q0-.913.792-1.529q.77-.616 1.97-.616q1.672 0 2.683.814l-.77 1.199a2.6 2.6 0 0 0-.935-.462a3.2 3.2 0 0 0-.946-.165q-.57 0-.913.209q-.34.21-.34.55q0 .374.417.638q.42.254 1.43.561q1.221.363 1.738.968t.517 1.54q0 .957-.737 1.65q-.726.682-2.112.715q-1.815 0-3.036-1.089zm-5.53.638q.352.22.847.22q.517 0 .858-.297q.34-.308.341-1.067v-5.302h1.485v5.588q-.033 1.298-.748 1.87a2.5 2.5 0 0 1-.891.484a3.3 3.3 0 0 1-.935.143q-.825 0-1.463-.286q-.682-.307-1.144-1.089l1.034-.847q.285.385.616.583"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 14 24"><path fill="currentColor" d="M2.845 24a2.845 2.845 0 0 1-2.741-3.611l-.005.02l-.015-.009l.09-.226l7-18.167A3.5 3.5 0 0 0 7.168.721l.003.022a.5.5 0 0 1 .014-.246L7.184.5l.014-.035V.458l.009-.019C7.315.147 7.657 0 8.215 0a7.7 7.7 0 0 1 2.607.592l-.051-.019a8.7 8.7 0 0 1 2.059 1.093l-.026-.018c.6.45.842.854.707 1.2l-.031.045l-.016.015a.8.8 0 0 1-.149.164l-.001.001a3.9 3.9 0 0 0-.831.929l-.009.016l-7.068 18.421l-.016-.006a2.88 2.88 0 0 1-2.542 1.561h-.007zM.658 20.282l-.02.05a2.363 2.363 0 0 0 1.348 3.012l.016.006c.245.098.53.154.828.154h.01h-.001h.005c.991 0 1.838-.617 2.177-1.488L5.026 22l.027-.061l6.959-18.09q.402-.664.972-1.134l.007-.006l.016-.016c.012-.015.02-.015.02-.03c0-.06-.061-.27-.557-.645a8 8 0 0 0-1.845-.982l-.055-.018A7.4 7.4 0 0 0 8.22.479L8.198.478c-.39 0-.524.082-.545.126v.04a4 4 0 0 1-.039 1.541l.005-.026l-6.962 18.12zm8.95-11.507a7.1 7.1 0 0 1-1.809 1.491l-.034.018c-.946.252-1.718.51-2.47.809l.15-.053c-.478.281-.875.65-1.18 1.088l-.008.012l-3.215 8.36a1.934 1.934 0 0 0 1.112 2.415l.013.005a1.88 1.88 0 0 0 2.407-1.043l.005-.013zM4.672 18.76a.2.2 0 0 1 .265.099l.001.001a.201.201 0 1 1-.37.161l-.001-.001a.2.2 0 0 1 .104-.26l.001-.001zm-1.014-1.8a.3.3 0 0 1-.418-.276a.3.3 0 0 1 .572-.126l.001.002a.28.28 0 0 1-.153.389l-.002.001zm.286-1.1a.58.58 0 0 1 .283-.756l.004-.001a.575.575 0 0 1 .748.281l.001.003a.576.576 0 0 1-1.049.476l-.001-.003h.013zm2.428-2.26a.3.3 0 1 1-.153.395l-.001-.002a.3.3 0 0 1 .152-.394l.002-.001zm-1.29-1.375a.2.2 0 0 1 .281.183a.2.2 0 0 1-.381.086l-.001-.001a.2.2 0 0 1 .098-.266l.001-.001zM8.453 1.14c.1-.261.993-.162 1.995.226s1.729.909 1.63 1.17s-1 .164-2-.221s-1.734-.91-1.632-1.176z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 128 128"><path fill="currentColor" d="M61.805 16c0 11.52 9.329 20.848 20.848 20.848h8.5v8.227c0 11.52 9.328 20.848 20.848 20.848V19.978A3.98 3.98 0 0 0 108.024 16zM38.903 39.039c0 11.519 9.325 20.848 20.844 20.848h8.504v8.227c0 11.52 9.328 20.848 20.848 20.848V43.017a3.983 3.983 0 0 0-3.977-3.977H38.903zM16.001 62.078c0 11.52 9.324 20.848 20.844 20.848h8.504v8.227c0 11.524 9.329 20.848 20.848 20.848V66.06a3.984 3.984 0 0 0-3.977-3.98H16.001z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 24 24"><path fill="currentColor" d="M5.086 9.711h3.002v9.031H5.086zm1.501-1.233h-.02a1.565 1.565 0 1 1 .04-3.12a1.565 1.565 0 1 1-.02 3.12m12.325 10.264H15.91v-4.83c0-1.215-.434-2.043-1.52-2.043a1.64 1.64 0 0 0-1.54 1.098a2 2 0 0 0-.1.732v5.043h-3c0-.003.04-8.184 0-9.03h3.002v1.28a2.98 2.98 0 0 1 2.705-1.493c1.975 0 3.456 1.291 3.456 4.065v5.178z" opacity=".5"></path><path fill="currentColor" d="M20.468 2H3.532a1.45 1.45 0 0 0-1.47 1.433v17.135c.011.8.669 1.442 1.47 1.432h16.936a1.45 1.45 0 0 0 1.47-1.432V3.433A1.45 1.45 0 0 0 20.467 2zM8.088 18.742H5.086V9.711h3.002zM6.833 8.48a2 2 0 0 1-.246-.002h-.02a1.565 1.565 0 1 1 .04-3.12a1.565 1.565 0 0 1 .226 3.122m12.079 10.262H15.91v-4.83c0-1.215-.434-2.043-1.52-2.043a1.64 1.64 0 0 0-1.54 1.098a2.1 2.1 0 0 0-.1.732v5.043h-3c0-.003.04-8.184 0-9.03h3.002v1.28a2.98 2.98 0 0 1 2.705-1.493c1.975 0 3.456 1.291 3.456 4.065v5.178z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 256 256"><g fill="none"><rect width="256" height="256" fill="#242938" rx="60"></rect><g clip-path="url(#iconifyReact1688)"><path fill="#fff" fill-rule="evenodd" d="M203.801 178.21c-9.79-.272-17.385.731-23.75 3.409c-1.833.736-4.774.736-5.016 3.043c.98.968 1.098 2.552 1.957 3.894c1.467 2.435 4.041 5.715 6.365 7.417l7.834 5.598c4.774 2.917 10.16 4.622 14.811 7.542c2.694 1.704 5.386 3.894 8.08 5.721c1.372.973 2.203 2.558 3.918 3.163v-.368c-.856-1.091-1.103-2.672-1.956-3.894l-3.677-3.526c-3.547-4.744-7.957-8.884-12.731-12.287c-3.918-2.677-12.484-6.326-14.076-10.825l-.241-.273c2.689-.272 5.872-1.219 8.445-1.949c4.165-1.091 7.957-.851 12.238-1.945l5.88-1.704v-1.091c-2.204-2.189-3.795-5.11-6.119-7.176c-6.242-5.353-13.102-10.586-20.203-14.965c-3.794-2.432-8.692-4.017-12.731-6.081c-1.473-.731-3.918-1.096-4.774-2.312c-2.209-2.672-3.43-6.204-5.021-9.369l-10.037-21.168c-2.203-4.745-3.553-9.49-6.242-13.869c-12.611-20.683-26.324-33.212-47.38-45.502c-4.527-2.555-9.913-3.654-15.64-4.99l-9.18-.49c-1.962-.851-3.919-3.164-5.633-4.26c-6.978-4.38-24.974-13.868-30.12-1.363c-3.305 7.907 4.899 15.692 7.684 19.709c2.085 2.798 4.774 5.96 6.247 9.124c.823 2.067 1.098 4.259 1.957 6.449c1.956 5.352 3.794 11.316 6.365 16.306c1.372 2.555 2.813 5.235 4.527 7.545c.98 1.363 2.695 1.947 3.06 4.136c-1.715 2.435-1.833 6.081-2.813 9.127c-4.409 13.748-2.694 30.78 3.548 40.902c1.962 3.04 6.585 9.734 12.858 7.177c5.509-2.19 4.28-9.124 5.871-15.208c.37-1.458.124-2.432.856-3.408v.273l5.021 10.097c3.795 5.961 10.408 12.167 15.914 16.306c2.936 2.19 5.263 5.964 8.934 7.3v-.368h-.241c-.736-1.091-1.839-1.582-2.818-2.433c-2.203-2.189-4.651-4.867-6.366-7.299c-5.139-6.812-9.666-14.357-13.708-22.142c-1.961-3.771-3.676-7.908-5.262-11.679c-.741-1.461-.741-3.654-1.962-4.379c-1.839 2.672-4.527 4.99-5.88 8.273c-2.327 5.23-2.568 11.679-3.424 18.371c-.494.122-.275 0-.494.272c-3.913-.97-5.263-4.99-6.73-8.393c-3.672-8.638-4.287-22.507-1.104-32.484c.856-2.555 4.533-10.585 3.065-13.018c-.74-2.312-3.183-3.648-4.533-5.475c-1.591-2.312-3.3-5.23-4.403-7.785c-2.936-6.817-4.404-14.357-7.59-21.17c-1.473-3.164-4.041-6.45-6.124-9.367c-2.327-3.286-4.892-5.599-6.73-9.49c-.612-1.363-1.468-3.528-.489-4.99c.242-.973.735-1.363 1.71-1.581c1.59-1.364 6.124.365 7.715 1.09c4.527 1.827 8.322 3.529 12.117 6.081c1.715 1.216 3.553 3.529 5.756 4.14h2.574c3.918.85 8.322.272 11.99 1.363c6.49 2.072 12.364 5.11 17.632 8.398c16.035 10.098 29.26 24.454 38.193 41.611c1.468 2.798 2.08 5.353 3.43 8.273c2.574 5.964 5.757 12.045 8.322 17.888c2.574 5.718 5.021 11.562 8.693 16.306c1.838 2.555 9.18 3.891 12.484 5.23c2.45 1.091 6.242 2.073 8.451 3.409c4.159 2.555 8.322 5.475 12.237 8.273c1.956 1.456 8.081 4.499 8.445 6.926zM78.958 72.487a19.6 19.6 0 0 0-5.015.608v.273h.241c.98 1.947 2.695 3.286 3.918 4.99l2.818 5.84l.242-.272c1.714-1.216 2.573-3.163 2.573-6.08c-.735-.851-.856-1.705-1.468-2.556c-.735-1.216-2.326-1.827-3.309-2.797z" clip-rule="evenodd"></path></g><defs><clipPath id="iconifyReact1688"><path fill="#fff" d="M38 38h180v180H38z"></path></clipPath></defs></g></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 32 32"><path fill="currentColor" d="M22.579 11.36c.151.077.291.181.405.307l3.131-1.396l-2.921-2.896l-.657 3.943zm-6.5-2.631c.156.229.249.489.281.765l4.661 1.975c.14-.109.301-.188.473-.235l.765-4.735L19.42 3.52l-3.343 5.135zm15.91 7.318l-4.995-4.995l-3.401 1.391l8.355 3.552s.073.052.041.052m-.833.813l-8.02-3.428a1.4 1.4 0 0 1-.933.541l-.859 5.277c.255.26.401.609.401.973l4.843 1.016l4.443-4.412v-.083zm-10.625-4.527l-4.353-1.855a1.59 1.59 0 0 1-1.391.724h-.265l-3.609 5.568l9.635-4.172v.011a2 2 0 0 1 0-.224q.008-.026-.016-.052zm5.292 9.746l-4.26-.881a1.4 1.4 0 0 1-.615.459l-1.016 6.297l5.917-5.865s-.011.032-.027.032zm-5.959-.434a1.4 1.4 0 0 1-.823-.948l-7.932-1.629l-.115.183l7.199 10.411l.432-.427l1.224-7.563s.041.031.015.016zm-8.588-3.536l7.839 1.615a1.39 1.39 0 0 1 1.099-.697l.849-5.188l-.183-.156l-9.744 4.177q.078.116.14.249m-3.287 1.307l-.167-.165l-3.38 1.389l1.64 1.631l1.865-2.896zm2.23.532a1.9 1.9 0 0 1-.749.167c-.209 0-.407-.032-.605-.099l-2.057 2.995l9.021 8.937l1.588-1.579zm-1.266-3.521q.204-.023.416 0c.152-.02.308-.02.459 0l3.645-5.667a1.6 1.6 0 0 1-.443-1.099a1.5 1.5 0 0 1 0-.364L8.603 7.25L5.04 10.718zm.402-9.87l4.317 1.839a1.64 1.64 0 0 1 1.115-.38q.266.006.525.083l3.371-5.26L15.896.052L9.355 6.473s-.011.068 0 .084M7.74 17.443q.133-.243.323-.448L4.37 11.484L.001 15.729zm-.349.932L.708 16.979l2.937 2.98l3.704-1.573z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 24 24"><path fill="currentColor" d="M12 5.601h-.116c-1.61 0-3.18.175-4.69.507l.144-.027a16 16 0 0 0-3.91 1.343l.094-.042a8.1 8.1 0 0 0-2.57 1.93l-.007.008A3.6 3.6 0 0 0 0 11.684v.004c.019.914.374 1.741.946 2.367l-.002-.003a8.1 8.1 0 0 0 2.529 1.917l.048.021a15.7 15.7 0 0 0 3.71 1.282l.106.019c1.366.305 2.936.48 4.546.48h.123H12h.116c1.61 0 3.18-.175 4.69-.507l-.144.027a16 16 0 0 0 3.91-1.343l-.094.042a8.1 8.1 0 0 0 2.57-1.93l.007-.008A3.6 3.6 0 0 0 24 11.688v-.004a3.6 3.6 0 0 0-.947-2.371l.002.003a8.1 8.1 0 0 0-2.529-1.917l-.048-.021a15.7 15.7 0 0 0-3.71-1.282l-.106-.019a21.2 21.2 0 0 0-4.546-.48h-.123h.006zm-3.12 7.264q-.198.18-.442.301l-.011.005a3 3 0 0 1-.482.179l-.021.005a1.7 1.7 0 0 1-.579.099h-.024h.001H5.35l-.32 1.963H3.583l1.28-6.675h2.773l.062-.001c.36 0 .706.063 1.026.179l-.021-.007c.295.108.546.276.748.489l.001.001c.175.223.3.493.354.789l.002.011a2.9 2.9 0 0 1-.015 1.059l.003-.019a3 3 0 0 1-.142.485l.007-.019q-.086.221-.184.417q-.122.196-.27.393a2.2 2.2 0 0 1-.317.343l-.003.002zm4.172.589l.565-2.822c.024-.107.038-.229.038-.355l-.002-.078v.004a.43.43 0 0 0-.111-.283a.7.7 0 0 0-.241-.134l-.005-.001a1.4 1.4 0 0 0-.418-.062l-.051.001h.002h-1.126l-.736 3.73H9.544l1.28-6.48h1.423l-.343 1.767h1.28l.073-.001q.498.002.961.117l-.027-.006c.249.055.466.172.641.332l-.001-.001a.84.84 0 0 1 .306.498l.001.005a1.95 1.95 0 0 1-.04.787l.003-.014l-.589 2.994zm7.902-2.184c-.04.181-.082.328-.132.473l.009-.031c-.054.159-.12.297-.201.425l.005-.008a1.8 1.8 0 0 1-.248.408l.003-.004q-.146.182-.317.329l-.003.003q-.198.18-.442.301l-.011.005a3 3 0 0 1-.482.179l-.021.005a1.7 1.7 0 0 1-.579.099h-.024h.001h-1.972l-.343 1.959h-1.423l1.28-6.675h2.749l.073-.001c.365 0 .716.063 1.041.18l-.022-.007c.287.104.529.272.718.488l.002.002c.19.222.325.497.378.799l.002.01a2.8 2.8 0 0 1-.04 1.076l.004-.019zm-2.7-1.547h-.978l-.513 2.749h.908q.376 0 .734-.066l-.025.004q.306-.056.546-.212l-.006.003q.205-.184.339-.421l.004-.008c.103-.188.18-.407.219-.638l.002-.012a1.9 1.9 0 0 0 .036-.649l.001.009a.8.8 0 0 0-.161-.419l.001.002a1.1 1.1 0 0 0-.409-.243l-.008-.002a2 2 0 0 0-.689-.096h.003zm-11.19 0h-.978l-.515 2.749h.91q.376 0 .734-.066l-.025.004q.306-.056.546-.212l-.006.003q.205-.184.339-.421l.004-.008c.103-.188.18-.407.219-.638l.002-.012a1.9 1.9 0 0 0 .036-.649l.001.009a.8.8 0 0 0-.161-.419l.001.002a1.1 1.1 0 0 0-.409-.243l-.008-.002a2 2 0 0 0-.689-.096h.003z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 32 32"><path fill="currentColor" d="M22.839 0a13.6 13.6 0 0 0-3.677.536l-.083.027a15 15 0 0 0-2.276-.219c-1.573-.027-2.923.353-4.011.989C11.719.964 9.495.317 7.151.448c-1.629.088-3.411.583-4.735 1.979C1.104 3.818.407 5.974.552 8.912c.041.807.271 2.124.656 3.837c.38 1.709.917 3.709 1.589 5.537c.672 1.823 1.405 3.463 2.552 4.577c.572.557 1.364 1.032 2.296.991c.652-.027 1.24-.313 1.751-.735c.249.328.516.468.755.599c.308.167.599.281.907.355c.552.14 1.495.323 2.599.135a5 5 0 0 0 1.167-.359l.047 1.307c.057 1.38.095 2.656.505 3.776c.068.183.251 1.12.969 1.953c.724.833 2.129 1.349 3.739 1.005c1.131-.24 2.573-.677 3.532-2.041c.948-1.344 1.375-3.276 1.459-6.412c.02-.172.047-.312.072-.448l.224.021h.027c1.208.052 2.521-.12 3.62-.631c.968-.448 1.703-.901 2.239-1.708c.131-.199.281-.443.319-.86c.041-.411-.199-1.063-.595-1.364c-.791-.604-1.291-.375-1.828-.26a8.7 8.7 0 0 1-1.599.192c1.541-2.593 2.645-5.353 3.276-7.792c.375-1.443.584-2.771.599-3.932c.021-1.161-.077-2.187-.771-3.077C28.481.802 25.423.03 23.059.005h-.219zm-.063.855c2.235-.021 5.093.604 7.145 3.228c.464.589.6 1.448.584 2.511s-.213 2.328-.573 3.719c-.692 2.699-2.011 5.833-3.859 8.652a1 1 0 0 0 .208.115c.385.161 1.265.296 3.025-.063c.443-.095.767-.156 1.105.099a.69.69 0 0 1 .244.568a.9.9 0 0 1-.177.448c-.339.509-1.009.995-1.869 1.396c-.76.353-1.855.536-2.817.547c-.489.005-.937-.032-1.319-.152l-.02-.004c-.147 1.411-.484 4.203-.704 5.473c-.176 1.025-.484 1.844-1.072 2.453c-.589.615-1.417.979-2.537 1.219c-1.385.297-2.391-.021-3.041-.568s-.948-1.276-1.125-1.719c-.124-.307-.187-.703-.249-1.235a27 27 0 0 1-.136-1.911q-.063-1.679-.041-3.365a4.1 4.1 0 0 1-2.068 1.016c-.921.156-1.739 0-2.228-.12a3 3 0 0 1-.693-.271c-.229-.12-.443-.255-.588-.527a.75.75 0 0 1-.073-.509a.8.8 0 0 1 .287-.443c.265-.215.615-.333 1.14-.443c.959-.199 1.297-.333 1.5-.496c.172-.135.371-.416.713-.828c0-.015 0-.036-.005-.052a3.96 3.96 0 0 1-1.771-.479c-.197.208-1.224 1.292-2.468 2.792c-.521.624-1.099.984-1.713 1.011c-.609.025-1.163-.281-1.631-.735c-.937-.912-1.688-2.48-2.339-4.251s-1.177-3.744-1.557-5.421c-.375-1.683-.599-3.037-.631-3.688c-.14-2.776.511-4.645 1.625-5.828s2.641-1.625 4.131-1.713c2.672-.151 5.213.781 5.724.979c.989-.672 2.265-1.088 3.859-1.063a10 10 0 0 1 2.24.292l.027-.016a9 9 0 0 1 .984-.28a13 13 0 0 1 2.76-.339zm.203.89h-.197c-.76.009-1.527.099-2.271.26c1.661.735 2.916 1.864 3.801 3c.615.781 1.12 1.64 1.505 2.557q.227.534.303.88c.031.115.047.213.057.312c0 .052.005.105-.021.193c0 .005-.005.016-.005.021c.043 1.167-.249 1.957-.287 3.072c-.025.808.183 1.756.235 2.792c.047.973-.072 2.041-.703 3.093c.052.063.099.125.151.193c1.672-2.636 2.88-5.547 3.521-8.032c.344-1.339.525-2.552.541-3.509c.016-.959-.161-1.657-.391-1.948c-1.792-2.287-4.213-2.871-6.24-2.885zm-6.391.343c-1.572.005-2.703.48-3.561 1.193c-.887.74-1.48 1.745-1.865 2.781c-.464 1.224-.625 2.411-.688 3.219l.021-.011a6.8 6.8 0 0 1 1.771-.687c.667-.157 1.391-.204 2.041.052c.657.249 1.193.848 1.391 1.749c.939 4.344-.291 5.959-.744 7.177c-.172.443-.323.891-.443 1.349c.057-.011.115-.027.172-.032c.323-.025.572.079.719.141c.459.192.771.588.943 1.041a2 2 0 0 1 .093.38a.6.6 0 0 1 .027.167a72 72 0 0 0 .015 4.984c.032.719.079 1.349.136 1.849c.057.495.135.875.188 1.005c.171.427.421.984.875 1.364c.448.381 1.093.631 2.276.381c1.025-.224 1.656-.527 2.077-.964c.423-.443.672-1.052.833-1.984c.245-1.401.729-5.464.787-6.224c-.025-.579.057-1.021.245-1.36c.187-.344.479-.557.735-.672c.124-.057.244-.093.343-.125a14 14 0 0 0-.323-.432a6 6 0 0 1-.891-1.463a7 7 0 0 0-.344-.647c-.176-.317-.4-.719-.635-1.172c-.469-.896-.979-1.989-1.245-3.052c-.265-1.063-.301-2.161.376-2.932c.599-.688 1.656-.973 3.233-.812c-.047-.141-.072-.261-.151-.443a10.5 10.5 0 0 0-1.391-2.355c-1.339-1.713-3.511-3.412-6.859-3.469zm-8.853.068a8 8 0 0 0-.505.016c-1.349.079-2.62.468-3.532 1.432c-.911.969-1.509 2.547-1.38 5.167c.027.5.24 1.885.609 3.536c.371 1.652.896 3.595 1.527 5.313c.629 1.713 1.391 3.208 2.12 3.916c.364.349.681.495.968.485c.287-.016.636-.183 1.063-.693a57 57 0 0 1 2.412-2.729a4.67 4.67 0 0 1-1.552-4.203c.135-.984.156-1.907.135-2.636c-.015-.708-.063-1.176-.063-1.473v-.032l-.005-.009c0-1.537.272-3.057.792-4.5c.375-.996.928-2 1.76-2.819c-.817-.271-2.271-.676-3.843-.755a8 8 0 0 0-.505-.016zm16.53 7.041c-.905.016-1.411.251-1.681.552c-.376.433-.412 1.193-.177 2.131c.233.937.719 1.984 1.172 2.855c.224.437.443.828.619 1.145c.183.323.313.547.391.745c.073.177.157.333.24.479c.349-.74.412-1.464.375-2.224c-.047-.937-.265-1.896-.229-2.864c.037-1.136.261-1.876.277-2.751a8 8 0 0 0-.985-.068zm-10.978.158c-.276 0-.552.036-.823.099a6 6 0 0 0-1.537.599a3.3 3.3 0 0 0-.463.303l-.032.025c.011.199.047.667.063 1.365c.016.76 0 1.728-.145 2.776c-.323 2.281 1.333 4.167 3.276 4.172c.115-.469.301-.944.489-1.443c.541-1.459 1.604-2.521.708-6.677c-.145-.677-.437-.953-.839-1.109a1.9 1.9 0 0 0-.697-.109zm10.557.27h.068c.083.005.167.011.239.031a.5.5 0 0 1 .183.073a.21.21 0 0 1 .099.145v.011a.4.4 0 0 1-.047.183a1 1 0 0 1-.145.197a.88.88 0 0 1-.516.281a.78.78 0 0 1-.547-.135a1 1 0 0 1-.172-.157a.3.3 0 0 1-.084-.172a.24.24 0 0 1 .052-.171a.7.7 0 0 1 .157-.12c.129-.073.301-.125.5-.152q.11-.013.213-.02zm-10.428.224c.068 0 .147.005.22.015c.208.032.385.084.525.167a.5.5 0 0 1 .177.141a.32.32 0 0 1 .073.224a.44.44 0 0 1-.1.208a1 1 0 0 1-.192.172a.84.84 0 0 1-.599.151a.96.96 0 0 1-.557-.301a1 1 0 0 1-.157-.219a.36.36 0 0 1-.057-.24c.021-.14.141-.219.256-.26c.131-.043.271-.057.411-.052zm12.079 9.791h-.005c-.192.073-.353.1-.489.163a.6.6 0 0 0-.317.285c-.089.152-.156.423-.136.885a.6.6 0 0 0 .199.095c.224.068.609.115 1.036.109c.849-.011 1.896-.208 2.453-.469a5.3 5.3 0 0 0 1.255-.817c-1.859.38-2.905.281-3.552.016a2 2 0 0 1-.443-.267zm-10.708.125h-.027c-.072.005-.172.032-.375.251c-.464.52-.625.848-1.005 1.151c-.385.307-.88.469-1.875.672a2.6 2.6 0 0 0-.615.192c.036.032.036.043.093.068c.147.084.333.152.485.193c.427.104 1.124.229 1.859.104c.729-.125 1.489-.475 2.141-1.385c.115-.156.124-.391.031-.641c-.093-.244-.297-.463-.437-.52a1 1 0 0 0-.276-.084z"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 128 128"><path fill="currentColor" d="M49.33 62h29.159C86.606 62 93 55.132 93 46.981V19.183c0-7.912-6.632-13.856-14.555-15.176c-5.014-.835-10.195-1.215-15.187-1.191c-4.99.023-9.612.448-13.805 1.191C37.098 6.188 35 10.758 35 19.183V30h29v4H23.776c-8.484 0-15.914 5.108-18.237 14.811c-2.681 11.12-2.8 17.919 0 29.53C7.614 86.983 12.569 93 21.054 93H31V79.952C31 70.315 39.428 62 49.33 62m-1.838-39.11c-3.026 0-5.478-2.479-5.478-5.545c0-3.079 2.451-5.581 5.478-5.581c3.015 0 5.479 2.502 5.479 5.581c-.001 3.066-2.465 5.545-5.479 5.545m74.789 25.921C120.183 40.363 116.178 34 107.682 34H97v12.981C97 57.031 88.206 65 78.489 65H49.33C41.342 65 35 72.326 35 80.326v27.8c0 7.91 6.745 12.564 14.462 14.834c9.242 2.717 17.994 3.208 29.051 0C85.862 120.831 93 116.549 93 108.126V97H64v-4h43.682c8.484 0 11.647-5.776 14.599-14.66c3.047-9.145 2.916-17.799 0-29.529m-41.955 55.606c3.027 0 5.479 2.479 5.479 5.547c0 3.076-2.451 5.579-5.479 5.579c-3.015 0-5.478-2.502-5.478-5.579c0-3.068 2.463-5.547 5.478-5.547"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 24 24"><path fill="currentColor" d="M19.8 16.7s1.8-.2 1.8-2.4s-2.1-2.5-2.1-2.5h-3.8V19h1.9v-1.7l1.7 1.7H22zm-.8-1.4h-1.5v-1.6H19s.4.2.4.8c.1.6-.4.8-.4.8m2.3-7.1v.2C13.2 6.1 10 13.2 10.6 18.7H4.3c.7-5.4 7.5-16.1 17-10.5m-.8-1.3c-.7-.3-1.4-.6-2.1-.8l.1-1.3l2.1.8zm-2 1.8q1.05 0 2.1.3l-.1 1.2l-1.8-.2zm-4.6-2.9l-.4-1.2l2.1-.2l.4 1.3c-.2 0-1.9.1-2.1.1m1.3 3.7c.4-.2 1.1-.5 2-.7l.4 1.2l-1.8.7zm-3.4-3c-.6.3-1.2.6-1.8 1l-.8-1.3l1.8-1zm2.5 3.6l.8 1.2l-1.1 1.3l-1.1-1c.3-.6.8-1.1 1.4-1.5M11.6 15c.1-.8.3-1.5.6-2.3l1.2 1l-.3 1.9zM7.9 9.3c-.5.5-1 1.1-1.4 1.6L5.2 9.8l1.5-1.6zm-3.1 4.4c-.4.8-.7 1.6-1 2.3L2 15.3l.9-2.3zm6.7 2.6l1.8.6l.3 2l-2-.5c0-.2-.1-.9-.1-2.1"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 512 512"><path fill="currentColor" d="M256 8C119 8 8 119 8 256s111 248 248 248s248-111 248-248S393 8 256 8m133.74 143.54c-11.47.41-19.4-6.45-19.77-16.87c-.27-9.18 6.68-13.44 6.53-18.85c-.23-6.55-10.16-6.82-12.87-6.67c-39.78 1.29-48.59 57-58.89 113.85c21.43 3.15 36.65-.72 45.14-6.22c12-7.75-3.34-15.72-1.42-24.56c4-18.16 32.55-19 32 5.3c-.36 17.86-25.92 41.81-77.6 35.7c-10.76 59.52-18.35 115-58.2 161.72c-29 34.46-58.4 39.82-71.58 40.26c-24.65.85-41-12.31-41.58-29.84c-.56-17 14.45-26.26 24.31-26.59c21.89-.75 30.12 25.67 14.88 34c-12.09 9.71.11 12.61 2.05 12.55c10.42-.36 17.34-5.51 22.18-9c24-20 33.24-54.86 45.35-118.35c8.19-49.66 17-78 18.23-82c-16.93-12.75-27.08-28.55-49.85-34.72c-15.61-4.23-25.12-.63-31.81 7.83c-7.92 10-5.29 23 2.37 30.7l12.63 14c15.51 17.93 24 31.87 20.8 50.62c-5.06 29.93-40.72 52.9-82.88 39.94c-36-11.11-42.7-36.56-38.38-50.62c7.51-24.15 42.36-11.72 34.62 13.6c-2.79 8.6-4.92 8.68-6.28 13.07c-4.56 14.77 41.85 28.4 51-1.39c4.47-14.52-5.3-21.71-22.25-39.85c-28.47-31.75-16-65.49 2.95-79.67C204.23 140.13 251.94 197 262 205.29c37.17-109 100.53-105.46 102.43-105.53c25.16-.81 44.19 10.59 44.83 28.65c.25 7.69-4.17 22.59-19.52 23.13"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 512 512"><path fill="currentColor" d="M128 204.667C145.062 136.227 187.738 102 256 102c102.4 0 115.2 77 166.4 89.833c34.138 8.56 64-4.273 89.6-38.5C494.938 221.773 452.262 256 384 256c-102.4 0-115.2-77-166.4-89.833c-34.138-8.56-64 4.273-89.6 38.5m-128 154C17.062 290.227 59.738 256 128 256c102.4 0 115.2 77 166.4 89.833c34.138 8.56 64-4.273 89.6-38.5C366.938 375.773 324.262 410 256 410c-102.4 0-115.2-77-166.4-89.833c-34.138-8.56-64 4.273-89.6 38.5"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 24 24"><path fill="currentColor" d="M8.283 20.263c7.547 0 11.676-6.259 11.676-11.677q.002-.264-.008-.528A8.4 8.4 0 0 0 22 5.928a8.3 8.3 0 0 1-2.36.649a4.13 4.13 0 0 0 1.808-2.273a8.2 8.2 0 0 1-2.61.993A4.1 4.1 0 0 0 15.847 4a4.11 4.11 0 0 0-4.106 4.106c0 .32.04.632.104.936a11.65 11.65 0 0 1-8.46-4.29a4.115 4.115 0 0 0 1.273 5.482A4.15 4.15 0 0 1 2.8 9.722v.056a4.11 4.11 0 0 0 3.29 4.026a4 4 0 0 1-1.08.144q-.397 0-.77-.072a4.1 4.1 0 0 0 3.834 2.85a8.23 8.23 0 0 1-5.098 1.76c-.328 0-.656-.016-.976-.056a11.67 11.67 0 0 0 6.283 1.833"></path></svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" style="color: rgb(74, 85, 101);" width="64" height="64" viewBox="0 0 32 32"><path fill="currentColor" d="M23.438.094c-.505-.005-1 .177-1.375.521c-.021.021-.047.042-.068.063l-10.62 11.745L5.172 7.34l-.542-.469a1.34 1.34 0 0 0-1.365-.203c-.005 0-.01.005-.016.005l-2.422 1c-.031.016-.068.031-.099.047l-.068.036l-.047.031c-.021.016-.047.031-.068.047c-.01.01-.026.021-.036.031q-.033.024-.057.047q-.03.023-.052.047q-.017.015-.042.047a.4.4 0 0 0-.042.047l-.047.063a.3.3 0 0 0-.031.042c-.016.021-.031.047-.047.068q-.01.023-.026.047q-.015.03-.031.068l-.026.057c-.005.021-.016.042-.021.063a.3.3 0 0 0-.021.063a.3.3 0 0 0-.021.073l-.016.052q-.001.033-.01.073c0 .021-.005.042-.005.068q-.006.054-.005.109v14.208c0 .536.323 1.021.818 1.224l2.422 1.021c.464.193 1 .104 1.38-.219l.542-.469l6.203-5.083l10.62 11.745c.031.031.068.063.099.089c.026.021.052.047.078.068c.021.021.047.036.073.057c.031.021.057.036.083.057c.031.016.063.036.089.052l.089.047l.089.042q.047.022.094.036c.031.016.068.026.099.036c.026.01.057.016.089.026s.068.021.104.026c.031.005.063.016.094.021s.063.01.099.01c.031.005.068.01.099.01s.063.005.099.005h.099c.036 0 .073-.005.104-.005a1 1 0 0 1 .089-.01a2 2 0 0 0 .198-.037c.036-.01.073-.016.109-.031q.04-.01.089-.026a1 1 0 0 0 .094-.036l.12-.047l6.589-3.172c.24-.115.458-.276.63-.479c.047-.047.083-.099.125-.151c0 0 0-.005.005-.01a2.4 2.4 0 0 0 .187-.323c.005-.01.005-.016.01-.026q.033-.07.057-.141l.016-.052q.025-.07.042-.141q.009-.023.01-.047c.01-.047.016-.094.026-.135a.3.3 0 0 1 .01-.068c0-.042.005-.078.005-.12q.006-.056.005-.104V5.216q-.001-.095-.01-.198a1.99 1.99 0 0 0-1.12-1.557L24.271.294a2 2 0 0 0-.828-.198zm.557 9.135v13.542L15.735 16zm-19.99 2.203L8.135 16l-4.13 4.568z"></path></svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
This favicon was generated using the following graphics from Twitter Twemoji:
|
|
2
|
+
|
|
3
|
+
- Graphics Title: 1f4d8.svg
|
|
4
|
+
- Graphics Author: Copyright 2020 Twitter, Inc and other contributors (https://github.com/twitter/twemoji)
|
|
5
|
+
- Graphics Source: https://github.com/twitter/twemoji/blob/master/assets/svg/1f4d8.svg
|
|
6
|
+
- Graphics License: CC-BY 4.0 (https://creativecommons.org/licenses/by/4.0/)
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
data/assets/js/search.js
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
const input = document.getElementById('search-input');
|
|
2
|
+
const resultsList = document.getElementById('search-results');
|
|
3
|
+
const paginatedList = document.getElementById('paginated-posts');
|
|
4
|
+
const paginationLinks = document.getElementById('pagination-links');
|
|
5
|
+
|
|
6
|
+
let posts = [];
|
|
7
|
+
|
|
8
|
+
fetch('/search.json')
|
|
9
|
+
.then(res => res.json())
|
|
10
|
+
.then(data => posts = data);
|
|
11
|
+
|
|
12
|
+
input.addEventListener('input', () => {
|
|
13
|
+
const query = input.value.toLowerCase().trim();
|
|
14
|
+
|
|
15
|
+
if (query.length === 0) {
|
|
16
|
+
resultsList.classList.add('hidden');
|
|
17
|
+
paginatedList.classList.remove('hidden');
|
|
18
|
+
return;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
const filtered = posts.filter(post =>
|
|
22
|
+
post.title.toLowerCase().includes(query) ||
|
|
23
|
+
post.excerpt.toLowerCase().includes(query)
|
|
24
|
+
);
|
|
25
|
+
|
|
26
|
+
resultsList.innerHTML = '';
|
|
27
|
+
if (filtered.length === 0) {
|
|
28
|
+
resultsList.innerHTML = '<li class="no-results">No results found.</li>';
|
|
29
|
+
} else {
|
|
30
|
+
filtered.forEach(post => {
|
|
31
|
+
const li = document.createElement('li');
|
|
32
|
+
li.innerHTML = `
|
|
33
|
+
<h3>
|
|
34
|
+
<a href="${post.url}">${post.title}</a>
|
|
35
|
+
</h3>
|
|
36
|
+
<p>
|
|
37
|
+
${post.excerpt.substring(0, 160)}
|
|
38
|
+
</p>
|
|
39
|
+
<small>${post.date}</small>
|
|
40
|
+
`;
|
|
41
|
+
resultsList.appendChild(li);
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
resultsList.classList.remove('hidden');
|
|
46
|
+
paginatedList.classList.add('hidden');
|
|
47
|
+
paginationLinks.classList.add('hidden');
|
|
48
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
function switchTheme() {
|
|
2
|
+
if (localStorage.theme === 'light' || !('theme' in localStorage)) {
|
|
3
|
+
localStorage.theme = 'dark';
|
|
4
|
+
document.documentElement.classList.add('dark');
|
|
5
|
+
return;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
localStorage.theme = 'light';
|
|
9
|
+
document.documentElement.classList.remove('dark')
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
if (localStorage.theme === 'dark' || (!('theme' in localStorage) && window.matchMedia('(prefers-color-scheme: dark)').matches)) {
|
|
13
|
+
document.documentElement.classList.add('dark')
|
|
14
|
+
} else {
|
|
15
|
+
document.documentElement.classList.remove('dark')
|
|
16
|
+
}
|
|
Binary file
|
data/bin/dotfolio-theme
ADDED