-
Notifications
You must be signed in to change notification settings - Fork 196
/
Copy pathfooter.html
131 lines (122 loc) · 3.29 KB
/
footer.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
<footer>
<div id="footerTop">
<div id="footerNameAndLogo">
<lazy-svg
loading="visible"
id="footerName"
href="{{ site.baseurl }}/images/logo.svg#name-symbol"
label="Lit">
</lazy-svg>
<lazy-svg
loading="visible"
id="footerFlame"
href="{{ site.baseurl }}/images/logo.svg#flame-symbol"
label="Lit logo">
</lazy-svg>
</div>
<!-- TODO(aomarks) Combine SVG symbols into a single sprite sheet at prod
build time. -->
<div id="footerSocialLinks">
<a
href="/discord/"
target="_blank"
rel="noopener"
title="Discord"
aria-label="Discord"
>
<lazy-svg
href="{{ site.baseurl }}/images/social/discord.svg#discord"
label="Discord"
loading="visible">
</lazy-svg>
</a>
<a
href="https://bsky.app/profile/lit.dev"
target="_blank"
rel="noopener"
title="Bluesky"
aria-label="Bluesky"
>
<lazy-svg
href="{{ site.baseurl }}/images/social/bluesky.svg#bluesky"
label="Bluesky"
loading="visible">
</lazy-svg>
</a>
<a
href="https://twitter.com/buildWithLit"
target="_blank"
rel="noopener"
title="Twitter"
aria-label="Twitter"
>
<lazy-svg
href="{{ site.baseurl }}/images/social/twitter.svg#twitter"
label="Twitter"
loading="visible">
</lazy-svg>
</a>
<a
href="https://github.com/lit/lit/"
target="_blank"
rel="noopener"
title="GitHub"
aria-label="GitHub"
>
<lazy-svg
href="{{ site.baseurl }}/images/social/github.svg#github"
label="GitHub"
loading="visible">
</lazy-svg>
</a>
<a
href="/youtube/"
target="_blank"
rel="noopener"
title="YouTube"
aria-label="YouTube"
>
<lazy-svg
href="{{ site.baseurl }}/images/social/youtube.svg#youtube"
label="YouTube"
loading="visible">
</lazy-svg>
</svg>
</a>
<a
href="https://stackoverflow.com/questions/tagged/lit+or+lit-html+or+lit-element"
target="_blank"
rel="noopener"
title="Stack Overflow"
aria-label="Stack Overflow"
>
<lazy-svg
href="{{ site.baseurl }}/images/social/stackoverflow.svg#stackoverflow"
label="Stack Overflow"
loading="visible">
</lazy-svg>
</a>
<a
href="/community-calendar/"
target="_blank"
rel="noopener"
title="Community Calendar"
aria-label="Community Calendar"
>
<lazy-svg
href="{{ site.baseurl }}/images/icons/calendar-month.svg#icon"
label="Community Calendar"
loading="visible">
</lazy-svg>
</a>
</div>
</div>
<div id="footerBottom">
<p>
Copyright Google LLC. Code licensed under
<a href="https://spdx.org/licenses/BSD-3-Clause.html">BSD-3-Clause</a>.
Documentation licensed under
<a href="https://spdx.org/licenses/CC-BY-3.0">CC-BY-3.0</a>.
</p>
</div>
</footer>