Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add installation link to download #202

Merged
merged 9 commits into from
Feb 4, 2025
3 changes: 2 additions & 1 deletion templates/download.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ <h1 class="page-title">Download Latest</h1>
{% endblock subhead_content%}
{% block main_content %}


{% set release_section = get_section(path="download/releases/_index.md") %}
{% set most_recent_release_page = release_section.pages | reverse | slice(end= 1) %}
{% set release_date = most_recent_release_page[0].date %}
Expand All @@ -15,11 +14,13 @@ <h1 class="page-title">Download Latest</h1>
{% set_global major = split_ver | nth(n= 0) %}

You can get the latest releases of Valkey from this page.<br />
For installation instructions, supported package managers, and how to configure Valkey, see the <a href="/topics/installation">installation</a> page.<br />
The <a href="./releases/">releases</a> page contains links to download all current and previous releases (including any security fixes for previous released versions).<br />
<br />

<hr />


<h3> Version {{major}}.x.x </h3>
{% include "includes/release.html" %}

Expand Down