mirror of
https://github.com/godotengine/godot-website.git
synced 2026-01-05 10:10:00 +03:00
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.
27 lines
736 B
HTML
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>
|