-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
63 lines (52 loc) · 1.82 KB
/
index.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
{{#> layout/base }}
{{> header}}
<div class="theme-light-on-brand bg-primary text-primary text-center py-1200 py-tablet-1700">
<div class="Container">
<h1 class="typography-heading-xlarge-bold">
Spirit Design System
</h1>
<h2 class="typography-heading-small-regular text-secondary mb-1000">
Development Preview
</h2>
<div class="Flex Flex--row Flex--wrap Flex--alignmentXCenter Flex--alignmentYCenter">
<a
href="https://spirit.supernova-docs.io/spirit/"
class="Button Button--tertiary Button--large"
>
Docs
</a>
<a
href="https://github.com/lmc-eu/spirit-design-system"
class="Button Button--tertiary Button--large"
>
GitHub
</a>
</div>
</div>
</div>
<main class="py-1100 pt-tablet-1600">
<div class="Container">
<section class="UNSTABLE_Section">
<h2 class="typography-heading-small-bold mb-900 mb-tablet-1100">Packages</h2>
<ul class="Grid Grid--cols-1 Grid--tablet--cols-2">
<li class="d-grid">
<a href="/packages/web/" class="docs-Card">Web</a>
</li>
<li class="d-grid">
<a href="/packages/web-react/" class="docs-Card">Web React</a>
</li>
{{!-- Hide link to the Twig implementation in production. Twig demo app only runs on localhost, we don't deploy it anywhere. --}}
{{#if @is_development}}
<li class="d-grid">
<a href="https://localhost:4443" class="docs-Card">Web Twig</a>
</li>
{{/if}}
<li class="d-grid">
<a href="/packages/form-validations/" class="docs-Card">Form Validations</a>
</li>
</ul>
</section>
</div>
</main>
{{> footer}}
{{/layout/base }}