Files
godot-website/pages/download.html
Hugo Locurcio 8f2c233990 Avoid redirects in internal links by appending trailing slash (#857)
The web server redirects pages like `/blog` to `/blog/`, which slows
down navigation a bit. This can be avoided by fully spelling out the URLs
in internal links.
2024-05-31 11:50:34 +02:00

27 lines
736 B
HTML

---
permalink: /download/index.html
title: "Download - Godot Engine"
description: "Download the latest stable version of the Godot Engine for Linux, macOS, Windows, or Android"
layout: default
redirect_from:
- /download/4.x/
---
<div style="padding: 16px 32px">
<h3>Redirecting...</h3>
<p>
If you are not being redirected automatically, <a href="/download/windows/" class="set-os-download-url">click here</a>.
</p>
</div>
<script type="text/javascript">
if (navigator.platform.indexOf('Mac') !== -1) {
window.location = "/download/macos";
} else if (navigator.platform.indexOf('Linux') !== -1) {
window.location = "/download/linux";
} else { // default to windows
window.location = "/download/windows/";
}
</script>