remove latest-release-notes from indexation (#27038)

Co-authored-by: Franck Nijhof <git@frenck.dev>
This commit is contained in:
Pierre 2023-04-24 19:19:03 +02:00 committed by GitHub
parent 438771920a
commit fef077dd86
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 13 additions and 11 deletions

View File

@ -66,7 +66,7 @@ mysql -D homeassistant -e "SELECT entity_id, state, last_updated FROM states LIM
## Beta time! ## Beta time!
Today we are releasing the first beta of Home Assistant Core 0.106. It is packed with awesome features. For a sneak peek of what is coming, check the [beta release notes](https://rc.home-assistant.io/latest-release-notes/). Today we are releasing the first beta of Home Assistant Core 0.106. It is packed with awesome features. For a sneak peek of what is coming, check the [beta release notes](/blog/2020/02/26/release-106/).
I'm personally most excited about the extended safe mode. It will guarantee that the frontend will always load, no matter how broken your configuration is. I'm personally most excited about the extended safe mode. It will guarantee that the frontend will always load, no matter how broken your configuration is.

View File

@ -34,7 +34,7 @@ setup has a total of 5 Home Assistant instances, controlling 7x marine aquariums
Those are some big views Kevin! I bet you will be happy with the new Lovelace Those are some big views Kevin! I bet you will be happy with the new Lovelace
features that are coming in Home Assistant Core 0.107. It will help features that are coming in Home Assistant Core 0.107. It will help
you to trim down that a bit, into multiple Lovelace Dashboards (now in you to trim down that a bit, into multiple Lovelace Dashboards (now in
[beta, sneak peak?](https://rc.home-assistant.io/latest-release-notes/)). [beta, sneak peak?](/blog/2020/03/18/release-107/)).
[Click here to check out Kevin's post on our Facebook group.](https://www.facebook.com/groups/HomeAssistant/permalink/2597624533842234/) [Click here to check out Kevin's post on our Facebook group.](https://www.facebook.com/groups/HomeAssistant/permalink/2597624533842234/)

View File

@ -1,5 +1,10 @@
---
layout: null
---
# These redirects are handled by Netlify # These redirects are handled by Netlify
# #
{% assign recent_release_post = site.categories['Core'].first %}
# General use redirects # General use redirects
/join-chat https://discord.gg/home-assistant /join-chat https://discord.gg/home-assistant
@ -12,6 +17,9 @@
/issues https://github.com/home-assistant/core/issues /issues https://github.com/home-assistant/core/issues
/community https://community.home-assistant.io/ /community https://community.home-assistant.io/
# Link to latest release note
/latest-release-notes/ {{ recent_release_post.url }}{{ site.patch_version_notes }} 302!
# Matter workshop June 2022 # Matter workshop June 2022
/skyconnect-interest https://docs.google.com/forms/d/e/1FAIpQLScEjHSBJszUZfgO3MIDO51IHr3Oeohcs8BLpRIjY1liJ58IpA/viewform?usp=sf_link /skyconnect-interest https://docs.google.com/forms/d/e/1FAIpQLScEjHSBJszUZfgO3MIDO51IHr3Oeohcs8BLpRIjY1liJ58IpA/viewform?usp=sf_link

View File

@ -6,6 +6,7 @@ is_homepage: true
regenerate: true regenerate: true
feedback: false feedback: false
--- ---
{% assign recent_release_post = site.categories['Core'].first %}
<div class="frontpage"> <div class="frontpage">
<div class="grid"> <div class="grid">
@ -21,7 +22,7 @@ feedback: false
> >
<div class="links"> <div class="links">
<a href="/latest-release-notes/">Release notes</a> <a href="{{ recent_release_post.url }}{{ site.patch_version_notes }}">Release notes</a>
</div> </div>
</div> </div>

View File

@ -1,7 +0,0 @@
---
---
{% assign recent_release_post = site.categories['Core'].first %}
<script>
document.location = '{{ recent_release_post.url }}{{ site.patch_version_notes }}';
</script>