+ {% assign download_primary = release_version | get_download_primary: false %}
+ {% for primary in download_primary %}
+ {% comment %}
+ When iterating over a hash, you get an array. 0-th item is the key, and
+ 1-st item is the value.
+ {% endcomment %}
+
+ {% if primary[0] == "linux" or primary[0] == "macos" or primary[0] == "windows" %}
+ {% assign platform_info = site.data.download_platforms | find: "name", primary[1] %}
+
+
diff --git a/_includes/outdated_article_notice.html b/_includes/articles/outdated_notice.html
similarity index 100%
rename from _includes/outdated_article_notice.html
rename to _includes/articles/outdated_notice.html
diff --git a/_includes/articles/prerelease_notice.html b/_includes/articles/prerelease_notice.html
new file mode 100644
index 0000000000..6aa0a12244
--- /dev/null
+++ b/_includes/articles/prerelease_notice.html
@@ -0,0 +1,5 @@
+
+
+ While engine maintainers try their best to ensure that each beta release is stable, this is by definition a pre-release piece of software. Be sure to make frequent backups, or use a version control system such as Git, to preserve your projects in a case of corruption or data loss.
+
+
diff --git a/_layouts/article.html b/_layouts/article.html
index 36d83bbf17..027cc9c66c 100644
--- a/_layouts/article.html
+++ b/_layouts/article.html
@@ -188,7 +188,7 @@ layout: default
- {% include outdated_article_notice.html %}
+ {% include articles/outdated_notice.html %}