-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.hbs
More file actions
73 lines (73 loc) · 2.76 KB
/
footer.hbs
File metadata and controls
73 lines (73 loc) · 2.76 KB
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
<footer class="footer [&_a]:text-link flex flex-col gap-6 border-t mt-auto pt-6 text-sm md:flex-row row-start-2 xl:peer-[.toc]:col-span-2">
<div class="flex flex-col gap-6">
<a
href="https://www.ibm.com/products/datastax"
target="_blank"
title="Go to the DataStax home page"
data-track="Footer Home Page Link Clicked"
class="w-min !text-primary"
>
{{> logo}}
</a>
<p class="!m-0">
<span>© Copyright IBM Corporation</span>
<span id="copyrightdate">{{year}}</span>
<span> |
<a
href="https://www.ibm.com/privacy"
target="_blank"
data-track="Footer Privacy Policy Link Clicked"
>Privacy policy</a>
|
<a
href="https://www.ibm.com/legal/terms"
target="_blank"
data-track="Footer Terms of Use Link Clicked"
>Terms of use</a>
{{#with site.keys.ibmSegment}}
<span id="preferenceCenterContainer">
|
<a
id="preferenceCenterLink"
href="#"
onclick="if(typeof window !== 'undefined' && window.truste && window.truste.eu && window.truste.eu.clickListener) { window.truste.eu.clickListener(); } return false;"
data-track="Footer Consent Preference Link Clicked"
style="cursor: pointer;"
>Manage Privacy Choices</a>
</span>
{{/with}}
</span>
</p>
<p class="text-tertiary !m-0 max-w-[640px] text-xs">Apache, Apache
Cassandra, Cassandra, Apache Tomcat, Tomcat, Apache Lucene, Apache Solr,
Apache Hadoop, Hadoop, Apache Pulsar, Pulsar, Apache Spark, Spark, Apache
TinkerPop, TinkerPop, Apache Kafka and Kafka are either registered
trademarks or trademarks of the Apache Software Foundation or its
subsidiaries in Canada, the United States and/or other countries.
Kubernetes is the registered trademark of the Linux Foundation.</p>
</div>
<div class="flex flex-col gap-6 md:ml-auto md:items-end">
<div class="flex items-center gap-4">
<a
href="https://github.com/datastax"
target="_blank"
title="Go to DataStax GitHub"
data-track="Footer Github Link Clicked"
class="h-6 w-6 bg-[url('../img/social-github.svg')] bg-no-repeat dark:invert"
></a>
<a
href="https://www.youtube.com/@DataStaxDevs"
target="_blank"
title="Go to DataStax Developers YouTube"
data-track="YouTube Link Clicked"
class="h-6 w-6 bg-[url('../img/social-youtube.svg')] bg-no-repeat dark:invert"
></a>
</div>
<p class="!m-0 md:text-right">General Inquiries:
<a
href="https://www.ibm.com/contact/global"
data-track="Footer Contact Link Clicked"
>Contact IBM</a>
</p>
</div>
</footer>