-
Notifications
You must be signed in to change notification settings - Fork 52
/
Copy pathdefault.html
100 lines (98 loc) · 4.03 KB
/
default.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
{%- block head -%}{%- endblock -%}<!DOCTYPE html>
<html lang="{{ page.lang | default(value=config.default_language) }}">
{% include "includes/head.html" %}
<body
{%- if page.extra.sectionid -%} id="{{ page.extra.sectionid }}"{%- endif -%}
{% if page.extra.body_class %} class="{{ page.extra.body_class }}"{% endif %}
{% if section.extra.body_class %} class="{{ section.extra.body_class }}"{% endif %}
>
{%- if config.extra.banner -%}
<div class="banner">
<div class="width-limiter">
{{ config.extra.banner | markdown | safe}}
</div>
</div>
{%- endif -%}
<div class="header">
<div class="width-limiter">
<a href="/" class="logo">
<img src="/img/valkey-horizontal.svg" alt="Valkey Logo" width="130" height="46"/>
</a>
<div role="button"
class="btn-menu"
onclick="window.toggleHeaderMenu();"
></div>
<nav role="navigation" aria-label="Main">
<a role="menuitem" href="/download/">Download</a>
<div class="has-submenu">
<a role="menuitem" href="/docs/">Documentation</a>
<div class="submenu">
<a role="menuitem" href="/commands/">Command Reference</a>
<a role="menuitem" href="/topics/">Documentation by Topic</a>
<a role="menuitem" href="/clients/">Client Libraries</a>
</div>
</div>
<a role="menuitem" href="/blog/">Blog</a>
<div class="has-submenu">
<span>Community</span>
<div class="submenu">
<a role="menuitem" href="/blog/">Blog</a>
<a role="menuitem" href="https://github.com/orgs/valkey-io/discussions">Forum</a>
<a role="menuitem" href="/participants/">Participants</a>
</div>
</div>
</nav>
</div>
</div>
<div class="body">
{% block content %}{% endblock %}
</div>
<div class="footer">
<div class="row">
<div class="col col-6 icon-links">
<a href="https://valkey-oss-developer.slack.com/join/shared_invite/zt-2nxs51chx-EB9hu9Qdch3GMfRcztTSkQ#/shared-invite/email" target="_blank">
<img src="/img/IconSlack.svg" alt="Slack Icon" width="20" height="20" />
Slack
</a>
<a href="https://github.com/valkey-io" target="_blank">
<img src="/img/IconGithub.svg" alt="Slack Icon" width="20" height="20" />
GitHub
</a>
<a href="https://www.linkedin.com/company/valkey/" target="_blank">
<img src="/img/IconLinkedin.svg" alt="Slack Icon" width="20" height="20" />
LinkedIn
</a>
<a href="https://x.com/valkey_io" target="_blank">
<img src="/img/IconX.svg" alt="Slack Icon" width="20" height="20" />
X.com
</a>
<a href="https://valkey-io.vercel.app/connect">
<img src="/img/IconMail.svg" alt="Slack Icon" width="20" height="20" />
Connect
</a>
</div>
<div class="col col-6 links">
<a href="/code_of_conduct">Code of Conduct</a>
<a href="https://github.com/orgs/valkey-io/discussions" target="_blank">Forum</a>
<a href="/about">About</a>
<a href="/topics/faq">FAQ</a>
</div>
</div>
<div class="footer_bottom">
<p>© Valkey contributors, 2024.</p>
<p>Valkey and the Valkey logo are trademarks of LF Projects, LLC.</p>
<p>
<a href="https://lfprojects.org/policies/trademark-policy/">Trademark Policy</a>.
<a href="https://lfprojects.org/policies/privacy-policy/">Privacy Policy</a>.
<a href="https://lfprojects.org/policies/terms-of-use/">Terms of Use</a>.
For other policies, please see <a href="https://lfprojects.org/">lfprojects.org</a>.
</p>
<p>Valkey includes certain 3-Clause BSD-licensed Redis code from Redis Ltd. and other source code. Redis Ltd. is
not the source of that other source code. Redis is a registered trademark of Redis Ltd.</p>
<p>
Logo design by <a href="https://github.com/dizys" target="_blank">Ziyang.</a>
</p>
</div>
</div>
</body>
</html>