Create page that lists supported doc versions. (#6882)

This commit is contained in:
Steve Perry
2018-01-11 13:11:09 -08:00
committed by GitHub
parent f4ab0f35d5
commit 5d06709d5a
2 changed files with 30 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
---
title: Supported Versions of the Kubernetes Documentation
---
{% capture overview %}
This website contains documentation for the current version of Kubernetes
and the four previous versions of Kubernetes.
{% endcapture %}
{% capture body %}
## Current version
The current version is
[{{page.version}}](/).
## Previous versions
{% for v in page.versions %}
{% if v.version != page.version %}
* [{{ v.version }}]({{v.url}})
{% endif %}
{% endfor %}
{% endcapture %}
{% include templates/concept.md %}