-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.html
732 lines (731 loc) · 32.5 KB
/
community.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
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
<!-- header.html -->
<!doctype html>
<html lang="en">
<head>
<title>Armory | 3D Game Engine</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="title" content="Armory | 3D Game Engine" />
<meta name="description" content="Armory is an open-source engine for creating 3D-enabled software." />
<meta name="author" content="Lubos Lenco & contributors">
<meta name="generator" content="Bootstrap 5.2">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://armory3d.org/" />
<meta property="og:title" content="Armory | 3D Game Engine">
<meta property="og:description" content="Armory is an open-source engine for creating 3D-enabled software." />
<meta property="og:image" content="https://armory3d.org/git/img1.jpg" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://armory3d.org/" />
<meta property="twitter:title" content="Armory | 3D Game Engine" />
<meta property="twitter:description" content="Armory is an open-source engine for creating 3D-enabled software." />
<meta property="twitter:image" content="https://armory3d.org/git/img1.jpg" />
<!-- Favicons -->
<link rel="icon" href="favicon.ico" sizes="32x32" type="image/x-icon">
<!-- Styles -->
<link rel="stylesheet" href="/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="/css/bootstrap-icons.css" crossorigin="anonymous">
<style>
/* CSS Variables */
:root {
--a3d-secondary: rgb(17, 19, 21);
--a3d-thirdly: #e9ecef;
}
/* Dark Scrollbar */
::-webkit-scrollbar {width: 8px; height: 3px ;}
::-webkit-scrollbar-button {background-color: #666;}
::-webkit-scrollbar-track {background-color: #646464;}
::-webkit-scrollbar-track-piece { background-color: #000;}
::-webkit-scrollbar-thumb {height: 50px; background-color: #666; border-radius: 3px;}
::-webkit-scrollbar-corner {background-color: #646464;}
/* Solid Black */
.bg-dark, .text-bg-dark {
background-color: black !important;
}
/* Dark Grey */
.bg-secondary, .text-bg-secondary {
background-color: var(--a3d-secondary) !important;
}
.bg-thirdly, .text-bg-thirdly {
color: black;
background-color: var(--a3d-thirdly);
}
/* btn-danger */
.btn-danger {
--bs-btn-bg:#cf2b43 !important;
--bs-btn-border-radius: 0.375rem;
}
/* Navbar Buttons */
#brand > div > a,
#brand > div > div > a,
.navbar-nav > li > a {
display: block;
height: 64px;
padding: 22px 12px;
line-height: normal;
box-shadow: none;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#brand > div > div > a:hover,
#brand > div > div > a:active,
#brand > div > div > a:focus,
.navbar-nav > li:not(.desktopNavLogo) > a:hover,
.navbar-nav > li:not(.desktopNavLogo) > a:active,
.navbar-nav > li:not(.desktopNavLogo) > a:focus {
box-shadow: 0px -4px 0px var(--bs-danger) inset;
}
/* Navbar Download */
.navbar-nav > li > .btn {
border: none;
box-shadow: none !important;
}
#navRight li a {
padding: 22px !important;
}
/* Navbar Dropdowns */
.bg-dark.dropdown-menu li a:hover,
.bg-dark.dropdown-menu li a:active,
.bg-dark.dropdown-menu li a:focus,
.bg-dark.dropdown-menu li a:hover *,
.bg-dark.dropdown-menu li a:active *,
.bg-dark.dropdown-menu li a:focus * {
color: white !important;
background-color: var(--bs-danger);
}
.bg-light.dropdown-menu li a:hover,
.bg-light.dropdown-menu li a:active,
.bg-light.dropdown-menu li a:focus,
.bg-light.dropdown-menu li a:hover *,
.bg-light.dropdown-menu li a:active *,
.bg-light.dropdown-menu li a:focus * {
color: black !important;
background-color: var(--bs-danger);
}
.dropdown-menu li a {
padding: 8px 16px;
}
.dropdown:hover .dropdown-menu {
display: block;
}
.dropdown-toggle::after {
display: none !important;
}
/* Homepage Vignette */
header {
position: relative;
background-color: black;
width: 100%;
height: 75vh;
min-height: 25rem;
overflow: hidden;
}
header video, header img {
position: absolute;
top: 50%;
left: 50%;
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
-ms-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
transform: translateX(-50%) translateY(-50%);
}
header .container {
position: relative;
}
header .splash-vignette {
position: absolute;
top: 0px;
left: 0px;
width: 100%;
height: 100%;
background: radial-gradient(transparent, black) rgba(0,0,0,0.5);
}
/* Homepage Buttons */
.btn-outline-light, .btn-outline-light * {
color: white !important;
border-color: rgba(255,255,255,0.25);
}
.btn-outline-light:hover {
background-color: transparent;
border-color: rgba(255,255,255,0.5);
}
/* Notes */
.notes_img {
max-width: 100%;
}
.nav-pills {
--bs-nav-pills-link-active-bg: #cf2b43 !important;
}
.nav-outline {
--bs-nav-pills-border-radius: 0.375rem !important;
}
.nav-outline .nav-link {
background: 0 0;
border: 0;
border-radius: var(--bs-nav-pills-border-radius);
}
.nav-outline .nav-link:disabled {
color: var(--bs-nav-link-disabled-color);
background-color: transparent;
border-color: transparent;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link,
.nav-outline .nav-link.active,
.nav-outline .show > .nav-link {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
color: white !important;
}
.nav-outline .nav-link.active,
.nav-outline .show > .nav-link {
outline: 1px solid #cf2b43;
}
.nav-pills .nav-link, .nav-outline .nav-link {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* FAQ Buttons */
.collapsing {
transition: none !important;
}
.accordion-button {
color: unset;
background-color: unset;
box-shadow: inset 0px calc(var(--bs-accordion-border-width) * -1) 0px rgba(108, 117, 125, 0.375);
transition: none !important;
}
.accordion-button:not(.collapsed) {
color: unset;
background-color: unset;
box-shadow: inset 0px calc(var(--bs-accordion-border-width) * -1) 0px rgba(108, 117, 125, 0.375) !important;
}
.accordion-button::after, .accordion-button:not(.collapsed)::after {
content: none;
background-image: none;
transition: none !important;
}
.accordion-button:focus {
border: none;
box-shadow: none;
}
/* Custom Responsive */
@media (min-width: 992px) {
.dropdown-menu {
right: auto !important;
left: 50% !important;
margin: 0px !important;
padding: 0px !important;
transform: translate(-50%, 0) !important;
}
.notes_img {
max-width: 50%;
}
.notes_container {
padding-right: 12rem !important;
padding-left: 12rem !important;
}
}
</style>
<script src="/js/bootstrap.bundle.min.js" crossorigin="anonymous"></script>
</head>
<!-- Navbar -->
<body class="text-bg-dark">
<nav id="brand" class="bg-dark navbar-dark navbar navbar-expand-lg px-lg-5 py-0">
<!-- Brand -->
<div class="d-flex align-items-center">
<a class="nav-link pe-0" href="/">
<img class="position-relative top-50 start-0 translate-middle-y" src="/img/Logo.png" width="48" height="48" alt="Armory3D Logo" />
</a>
<div class="dropdown">
<a class="fs-5 text-light fw-bold lh-1 nav-link dropdown-toggle me-2" role="button" data-bs-toggle="dropdown" aria-expanded="false">
ARMORY3D<i class="bi bi-chevron-down ms-1"></i>
</a>
<ul class="bg-dark rounded-0 dropdown-menu">
<li>
<a class="text-light dropdown-item" href="/">
<i class="text-light bi bi-house-door me-2"></i>Home
</a>
</li>
<li>
<a class="text-light dropdown-item" href="https://armorpaint.org">
<i class="text-light bi bi-brush me-2"></i>ArmorPaint
</a>
</li>
<li>
<a class="text-light dropdown-item" href="https://armorlab.org">
<i class="text-light bi bi-palette me-2"></i>ArmorLab
</a>
</li>
</ul>
</div>
</div>
<!-- Mobile Toggle -->
<button class="navbar navbar-dark navbar-toggler me-2" type="button" data-bs-toggle="collapse" data-bs-target="#navLinks" aria-expanded="false" aria-controls="navLinks" aria-label="Toggle navigation">
<i class="navbar-toggler-icon"></i>
</button>
<!-- Navbar Links -->
<div class="container-fluid px-0">
<div class="collapse navbar-collapse" id="navLinks">
<ul class="navbar-nav me-auto">
<!-- News -->
<li class="nav-item dropdown">
<a class="text-light nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false">
News<i class="text-light bi bi-chevron-down ms-1" style="font-size: 0.75rem;"></i>
</a>
<ul class="bg-dark rounded-0 dropdown-menu">
<li>
<a class="text-light dropdown-item" href="/notes">
<i class="text-light bi bi-megaphone me-2"></i>Release Notes
</a>
</li>
<li>
<a class="text-light dropdown-item" href="/news">
<i class="text-light bi bi-newspaper me-2"></i>News
</a>
</li>
</ul>
</li>
<!-- Features -->
<li class="nav-item">
<a class="text-light nav-link" href="/features">Features</a>
</li>
<!-- Showcase -->
<li class="nav-item dropdown">
<a class="text-light nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Showcase<i class="text-light bi bi-chevron-down ms-1" style="font-size: 0.75rem;"></i>
</a>
<ul class="bg-dark rounded-0 dropdown-menu">
<li>
<a class="text-light dropdown-item" href="https://armory3d.github.io/armory_examples_browser/">
<i class="text-light bi bi-play-circle me-2"></i>Online Demos
</a>
</li>
<li>
<a class="text-light dropdown-item" href="https://github.com/armory3d/armory/wiki/Games-made-with-Armory">
<i class="text-light bi bi-controller me-2"></i>Community Games
</a>
</li>
</ul>
</li>
<!-- Learn -->
<li class="nav-item dropdown">
<a class="text-light nav-link dropdown-toggle" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Learn<i class="text-light bi bi-chevron-down ms-1" style="font-size: 0.75rem;"></i>
</a>
<ul class="bg-dark rounded-0 dropdown-menu">
<li>
<a class="text-light dropdown-item" href="https://github.com/armory3d/armory/wiki">
<i class="text-light bi bi-book me-2"></i>Manual
</a>
</li>
<li>
<a class="text-light dropdown-item" href="https://api.armory3d.org">
<i class="text-light bi bi-code me-2"></i>API
</a>
</li>
<li>
<a class="text-light dropdown-item" href="https://github.com/armory3d/armory/wiki/community_tutorials">
<i class="text-light bi bi-youtube me-2"></i>
Tutorials
</a>
</li>
</ul>
</li>
<!-- FAQ -->
<li class="nav-item">
<a class="text-light nav-link" href="/faq">FAQ</a>
</li>
<!-- Community -->
<li class="nav-item">
<a class="text-light nav-link" href="/community">Community</a>
</li>
</ul>
<ul id="navRight" class="navbar-nav">
<!-- Documentation Search + Theme Toggle -->
<form class="d-flex align-items-center was-validated me-3" onsubmit="checkValidation(); return false;" method="post">
<button class="fw-bold btn" type="button" aria-expanded="false" onclick="toggleTheme(this);">
<i class="bi bi-sun text-light"></i>
</button>
<div id="formDocs" class="collapse">
<input required class="text-bg-light form-control" placeholder="Search forum" name="inputDocs" type="text" aria-label="Search">
</div>
<button class="fw-bold btn" type="button" onclick="docsToggle(this);" data-bs-toggle="collapse" data-bs-target="#formDocs" aria-expanded="false" aria-controls="formDocs">
<i class="bi bi-search text-light"></i>
</button>
</form>
<!-- Download -->
<li class="nav-item">
<a class="text-white fw-bold rounded-0 nav-link btn btn-danger mt-1 mt-lg-0 me-0 me-lg-2 p-3" href="/download">
<i class="bi bi-download me-2"></i>Download
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- $main.html -->
<main class="text-bg-dark">
<div class="text-center container p-5">
<!-- 1-3 -->
<div class="card-group">
<!-- Discord -->
<div id="discord" class="text-bg-secondary card border border-light border-opacity-25">
<!-- Icon -->
<div class="d-flex justify-content-center align-items-center">
<a href="#discord">
<i class="bi bi-discord text-light" style="font-size: 4rem;"></i>
</a>
</div>
<!-- Body -->
<div class="card-body pt-0">
<h1 class="display-6 fw-bold text-reset text-decoration-none lh-1 mb-3">Discord</h1>
<p class="card-text lead">Official server.</p>
<div class="card-text d-grid gap-2 d-lg-flex justify-content-lg-center">
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://discord.gg/axq6qWV">
<i class="bi bi-link-45deg text-white me-2"></i>Server
</a>
</div>
</div>
</div>
<!-- Forums -->
<div id="forums" class="text-bg-secondary card border border-light border-opacity-25">
<!-- Icon -->
<div class="d-flex justify-content-center align-items-center" style="height: 96px">
<a href="#forums">
<svg class="text-light" style="width: 64px; height: 85px;" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32px" height="32px"><path d="M 16.109375 3 C 8.994375 3 3 8.7164375 3 15.773438 C 3 15.999438 3.0058594 29 3.0058594 29 L 16.109375 28.988281 C 23.230375 28.988281 29 23.051141 29 15.994141 C 29 8.9371406 23.230375 3 16.109375 3 z M 16 8 C 20.418 8 24 11.582 24 16 C 24 20.418 20.418 24 16 24 C 14.58 24 13.247797 23.625563 12.091797 22.976562 L 8 24 L 9.1210938 20.070312 C 8.4130937 18.877312 8 17.489 8 16 C 8 11.582 11.582 8 16 8 z"/></svg>
</a>
</div>
<!-- Body -->
<div class="card-body pt-0">
<h1 class="display-6 fw-bold text-reset text-decoration-none lh-1 mb-3">Forums</h1>
<p class="card-text lead">Armory & Blender forums.</p>
<div class="card-text d-grid gap-2 d-lg-flex justify-content-lg-center">
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="http://forums.armory3d.org">
<i class="bi bi-link-45deg text-white me-2"></i>Armory
</a>
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="http://forums.armory3d.org">
<i class="bi bi-link-45deg text-white me-2"></i>BlenderArtists
</a>
</div>
</div>
</div>
<!-- Github -->
<div id="github" class="text-bg-secondary card border border-light border-opacity-25">
<!-- Icon -->
<div class="d-flex justify-content-center align-items-center">
<a href="#github">
<i class="bi bi-github text-light" style="font-size: 4rem;"></i>
</a>
</div>
<!-- Body -->
<div class="card-body pt-0">
<h1 class="display-6 fw-bold text-reset text-decoration-none lh-1 mb-3">Github</h1>
<p class="card-text lead">Official repository.</p>
<div class="card-text d-grid gap-2 d-lg-flex justify-content-lg-center">
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://github.com/armory3d/armory">
<i class="bi bi-link-45deg text-white me-2"></i>Repository
</a>
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://github.com/search?q=armory3d">
<i class="bi bi-search text-white me-2"></i>Search
</a>
</div>
</div>
</div>
</div>
<!-- 4-6 -->
<div class="card-group">
<!-- Twitter -->
<div id="twitter" class="text-bg-secondary card border border-light border-opacity-25">
<!-- Icon -->
<div class="d-flex justify-content-center align-items-center">
<a href="#twitter">
<i class="bi bi-twitter text-light" style="font-size: 4rem;"></i>
</a>
</div>
<!-- Body -->
<div class="card-body pt-0">
<h1 class="display-6 fw-bold text-reset text-decoration-none lh-1 mb-3">Twitter</h1>
<p class="card-text lead">Official handle.</p>
<div class="card-text d-grid gap-2 d-lg-flex justify-content-lg-center">
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://twitter.com/armory3d">
<i class="bi bi-link-45deg text-white me-2"></i>Handle
</a>
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://twitter.com/hashtag/armory3d">
<i class="bi bi-hash text-white me-2"></i>Hashtag
</a>
</div>
</div>
</div>
<!-- Instagram -->
<div id="instagram" class="text-bg-secondary card border border-light border-opacity-25">
<!-- Icon -->
<div class="d-flex justify-content-center align-items-center">
<a href="#instagram">
<i class="bi bi-instagram text-light" style="font-size: 4rem;"></i>
</a>
</div>
<!-- Body -->
<div class="card-body pt-0">
<h1 class="display-6 fw-bold text-reset text-decoration-none lh-1 mb-3">Instagram</h1>
<p class="card-text lead">Official handle.</p>
<div class="card-text d-grid gap-2 d-lg-flex justify-content-lg-center">
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://instagram.com/armory3d">
<i class="bi bi-link-45deg text-white me-2"></i>Handle
</a>
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://instagram.com/explore/tags/armory3d">
<i class="bi bi-hash text-white me-2"></i>Hashtag
</a>
</div>
</div>
</div>
<!-- Facebook -->
<div id="facebook" class="text-bg-secondary card border border-light border-opacity-25">
<!-- Icon -->
<div class="d-flex justify-content-center align-items-center">
<a href="#facebook">
<i class="bi bi-facebook text-light" style="font-size: 4rem;"></i>
</a>
</div>
<!-- Body -->
<div class="card-body pt-0">
<h1 class="display-6 fw-bold text-reset text-decoration-none lh-1 mb-3">Facebook</h1>
<p class="card-text lead">Official handle.</p>
<div class="card-text d-grid gap-2 d-lg-flex justify-content-lg-center">
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://facebook.com/armorytools">
<i class="bi bi-link-45deg text-white me-2"></i>Handle
</a>
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://facebook.com/hashtag/armory3d">
<i class="bi bi-hash text-white me-2"></i>Hashtag
</a>
</div>
</div>
</div>
</div>
<!-- 7-9 -->
<div class="card-group">
<!-- YouTube -->
<div id="youtube" class="text-bg-secondary card border border-light border-opacity-25">
<!-- Icon -->
<div class="d-flex justify-content-center align-items-center">
<a href="#youtube">
<i class="bi bi-youtube text-light" style="font-size: 4rem;"></i>
</a>
</div>
<!-- Body -->
<div class="card-body pt-0">
<h1 class="display-6 fw-bold text-reset text-decoration-none lh-1 mb-3">YouTube</h1>
<p class="card-text lead">Official channel.</p>
<div class="card-text d-grid gap-2 d-lg-flex justify-content-lg-center">
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://youtube.com/c/Armory3d">
<i class="bi bi-link-45deg text-white me-2"></i>Channel
</a>
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://youtube.com/hashtag/armory3d">
<i class="bi bi-hash text-white me-2"></i>Hashtag
</a>
</div>
</div>
</div>
<!-- Artstation -->
<div id="artstation" class="text-bg-secondary card border border-light border-opacity-25">
<!-- Icon -->
<div class="d-flex justify-content-center align-items-center" style="height: 96px">
<a href="#artstation">
<svg class="text-light" style="width: 64px; height: 85px;" fill="currentColor" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32px" height="32px"><path d="M 13.730469 5 L 26 27 L 27.994141 22.488281 C 28.457141 21.562281 28.410094 20.463078 27.871094 19.580078 L 20.095703 6.4355469 C 19.550703 5.5445469 18.580156 5 17.535156 5 L 13.730469 5 z M 11.511719 7.1777344 L 5.6308594 18 L 17.546875 18 L 11.511719 7.1777344 z M 4 21 L 6.171875 25.341797 C 6.679875 26.357797 7.7175156 27 8.8535156 27 L 22.566406 27 L 19.220703 21 L 4 21 z"/></svg>
</a>
</div>
<!-- Body -->
<div class="card-body pt-0">
<h1 class="display-6 fw-bold text-reset text-decoration-none lh-1 mb-3">Artstation</h1>
<p class="card-text lead">Community hashtag.</p>
<div class="card-text d-grid gap-2 d-lg-flex justify-content-lg-center">
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://artstation.com/search?sort_by=relevance&query=armory3d">
<i class="bi bi-search text-white me-2"></i>Search
</a>
</div>
</div>
</div>
<!-- Reddit -->
<div id="reddit" class="text-bg-secondary card border border-light border-opacity-25">
<!-- Icon -->
<div class="d-flex justify-content-center align-items-center">
<a href="#reddit">
<i class="bi bi-reddit text-light" style="font-size: 4rem;"></i>
</a>
</div>
<!-- Body -->
<div class="card-body pt-0">
<h1 class="display-6 fw-bold text-reset text-decoration-none lh-1 mb-3">Reddit</h1>
<p class="card-text lead">Unofficial subreddit.</p>
<div class="card-text d-grid gap-2 d-lg-flex justify-content-lg-center">
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://reddit.com/r/armory3d">
<i class="bi bi-link-45deg text-white me-2"></i>Subreddit
</a>
<a class="fw-bold btn btn-danger align-items-center justify-content-center" href="https://reddit.com/search/?q=armory3d">
<i class="bi bi-search text-white me-2"></i>Search
</a>
</div>
</div>
</div>
</div>
</div>
<p class="lead text-center container pb-3">Discourse & Artstation icons provided by <a class="fw-bold text-reset" href="https://icons8.com">icons8.com</a>.</p>
</main>
<!-- footer.html -->
<footer class="text-bg-dark">
<div class="vh-100 container py-4 py-lg-5 px-4 px-lg-3">
<div class="row">
<!-- Development -->
<div class="col-6 col-lg-2">
<h5>DEVELOPMENT</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="/notes">Release Notes</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory">GitHub</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory/issues">Tracker</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory/wiki/contribute">Contribute</a></li>
</ul>
</div>
<!-- Credits -->
<div class="col-6 col-lg-2">
<h5>CREDITS</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="http://kode.tech">Kode</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://blender.org">Blender</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory/graphs/contributors">Contributors</a></li>
</ul>
</div>
<!-- Contact -->
<div class="col-6 col-lg-2">
<h5>CONTACT</h5>
<ul class="nav flex-column">
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="/community">Community</a></li>
<script>
var user_name = "lubos";
var host_name = "armory3d.org";
document.write("<li class='nav-item mb-2'><a class='nav-link p-0 link-secondary' href='" + "mail" + "to:" + user_name + "@" + host_name + "'>Email</a></li>");
</script>
</ul>
</div>
<!-- Copyright -->
<div class="col-6 col-lg-3">
<ul class="nav flex-column">
<li class="nav-item mb-2">© 2022 Lubos Lenco & contributors</li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory/blob/main/LICENSE.md#the-zliblibpng-license">Armory3D License</a></li>
<li class="nav-item mb-2"><a class="nav-link p-0 link-secondary" href="https://github.com/armory3d/armory/blob/main/blender/arm/LICENSE.md">Blender License</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script>
// Theme Toggle
function toggleTheme(t) {
const e = document.querySelectorAll("*");
for (let i=0; i<e.length; i++) {
// bg-light & bg-dark & bg-secondary & bg-thirdly
if (e[i].classList.contains("bg-light")) {
e[i].classList.replace("bg-light", "bg-dark");
} else if (e[i].classList.contains("bg-dark")) {
e[i].classList.replace("bg-dark", "bg-light");
} else if (e[i].classList.contains("bg-secondary")) {
e[i].classList.replace("bg-secondary", "bg-thirdly");
} else if (e[i].classList.contains("bg-thirdly")) {
e[i].classList.replace("bg-thirdly", "bg-secondary");
}
// text-light & text-dark & text-white-50 & text-muted
if (e[i].classList.contains("text-light")) {
e[i].classList.replace("text-light", "text-dark");
} else if (e[i].classList.contains("text-dark")) {
e[i].classList.replace("text-dark", "text-light");
} else if (e[i].classList.contains("text-white-50")) {
e[i].classList.replace("text-white-50", "text-muted");
} else if (e[i].classList.contains("text-muted")) {
e[i].classList.replace("text-muted", "text-white-50");
}
// navbar-light & navbar-dark
if (e[i].classList.contains("navbar-light")) {
e[i].classList.replace("navbar-light", "navbar-dark");
} else if (e[i].classList.contains("navbar-dark")) {
e[i].classList.replace("navbar-dark", "navbar-light");
}
// text-bg-light & text-bg-dark & text-bg-secondary & text-bg-thirdly
if (e[i].classList.contains("text-bg-light")) {
e[i].classList.replace("text-bg-light", "text-bg-dark");
} else if (e[i].classList.contains("text-bg-dark")) {
e[i].classList.replace("text-bg-dark", "text-bg-light");
} else if (e[i].classList.contains("text-bg-secondary")) {
e[i].classList.replace("text-bg-secondary", "text-bg-thirdly");
} else if (e[i].classList.contains("text-bg-thirdly")) {
e[i].classList.replace("text-bg-thirdly", "text-bg-secondary");
}
// border-light & border-dark
if (e[i].classList.contains("border-light")) {
e[i].classList.replace("border-light", "border-dark");
} else if (e[i].classList.contains("border-dark")) {
e[i].classList.replace("border-dark", "border-light");
}
}
// bi-sun & bi-moon-stars
if (t.children[0].classList.contains("bi-sun")) {
t.children[0].classList.replace("bi-sun", "bi-moon-stars");
} else if (t.children[0].classList.contains("bi-moon-stars")) {
t.children[0].classList.replace("bi-moon-stars", "bi-sun");
}
}
f = document.getElementById("formDocs");
// Docs Search Toggle - Search/Close Icons
function docsToggle(e) {
if (!e.classList.contains("collapsed")) {
e.children[0].classList.replace("bi-search", "bi-x-lg");
} else {
e.children[0].classList.replace("bi-x-lg", "bi-search");
}
}
// Docs Search - Form Reset
function formReset() {
formDocs.classList.remove("show");
formDocs.parentElement.children[2].classList.toggle("collapsed");
let a = formDocs.parentElement.children[2].getAttribute("aria-expanded");
a = "false";
formDocs.parentElement.children[2].setAttribute("aria-expanded", a);
f.children[0].value = "";
}
// Docs Search - Close Control
window.addEventListener("keydown", e => {
if (e.key === "Escape") {
formReset();
}
});
// Docs Search - Search Destination
function checkValidation() {
if (f.children[0].value.length >= 3) {
location.href = "https://forums.armory3d.org/search?q=" + String(f.children[0].value);
} else {
alert("Search terms require minimum of three letters.");
}
}
// Docs Search - Init Undo
window.addEventListener("pageshow", function() {
formReset();
});
</script>
</body>
</html>