Files
godot-website/pages/download/archive.html
Emi d3b64552b7 New footer design (#907)
* New Footer

* Make main.css be an scss file to handle imports

* Remove margin gap fix

* remove unused logos

* Update _sass/_footer.scss

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>

* Update _sass/_footer.scss

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>

* Update assets/css/main.scss

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>

---------

Co-authored-by: Hugo Locurcio <hugo.locurcio@hugo.pro>
2024-08-18 18:48:02 +02:00

79 lines
1.8 KiB
HTML

---
permalink: /download/archive/index.html
title: "Godot download archive - Godot Engine"
description: "Download any officially published version of Godot for Linux, macOS, Windows, or Android"
layout: default
---
{% include header.html %}
<link rel="stylesheet" href="/assets/css/download.css?2">
<link rel="stylesheet" href="/assets/css/download-archive.css">
<style>
.hero {
background-image: none;
padding-top: 54px;
padding-bottom: 30px;
}
.hero h1 {
text-shadow: none;
color: var(--base-color-text-title);
}
.hero-blurb {
color: var(--base-color-text);
}
</style>
<div class="hero">
<div class="hero-wrapper">
<h1>Godot archive</h1>
<div class="hero-blurb">
<p>
Download any officially published release of the engine.
</p>
</div>
</div>
</div>
<div class="container">
<div class="padded" style="padding-top:0;margin-top:32px">
<h2>Official releases</h2>
<div class="archive-list">
{% for version in site.data.versions %}
<div class="archive-group">
<div>
<h3 id="{{ version.name }}">
Godot {{ version.name }}
</h3>
<span>Current state:</span> <span class="archive-version-flavor">{{ version.flavor }}</span>
</div>
</div>
<div class="card base-padding archive-releases">
{% assign flavor_hint = version.flavor | slice: 0, 2 %}
{% include download/archive-list-item.html version=version %}
{% for release in version.releases %}
{% assign next_hint = release.name | slice: 0, 2 %}
{% if flavor_hint != next_hint %}
<hr>
{% assign flavor_hint = next_hint %}
{% endif %}
{% include download/archive-list-item.html version=version release=release %}
{% endfor %}
</div>
{% endfor %}
</div>
</div>
</div>
{% include footer.html %}