Godot 4.5 release page

Huge thanks to JohnVeness, AThousandShips, and Meorge for their
great help rewording my broken English.
This commit is contained in:
Adam Scott
2025-06-22 12:58:20 -04:00
parent c9f1406413
commit 5387797774
177 changed files with 6699 additions and 394 deletions

View File

@@ -83,7 +83,7 @@
document.addEventListener('DOMContentLoaded', () => {
// This needs to be done on page load but also after page changes,
// in case a code block appears in an article.
document.querySelectorAll('pre code').forEach((block) => {
document.querySelectorAll('pre:not(.manual) code').forEach((block) => {
hljs.highlightBlock(block);
});

View File

@@ -45,22 +45,20 @@
</ul>
</nav>
</div>
{% comment %}
{% if page.path == "pages/home.html" %}
<div class="banner-container" style="background-color: #fb99ff;">
<div class="container">
<div class="banner">
<div class="banner-text">
Godot 4.4 just released!
Godot 4.5 just released!
</div>
<div class="banner-text">
Check out the <a href="/releases/4.4/">release page!</a>
Check out the <a href="/releases/4.5/">release page!</a>
</div>
</div>
</div>
</div>
{% endif %}
{% endcomment %}
</header>
<!-- Dropdown menu positioned outside header to avoid backdrop-filter nesting issues -->