Add layout to hide outdated releases
This commit is contained in:
parent
60638ee356
commit
11ad351c53
|
@ -2,6 +2,8 @@
|
|||
linktitle: Release History
|
||||
title: Releases
|
||||
type: docs
|
||||
layout: release-info
|
||||
notoc: true
|
||||
---
|
||||
|
||||
|
||||
|
|
|
@ -65,7 +65,7 @@ other = "(last updated: %s)"
|
|||
other = "You are viewing documentation for Kubernetes version:"
|
||||
|
||||
[deprecation_warning]
|
||||
other = " documentation is no longer actively maintained. The version you are currently viewing is a static snapshot. For up-to-date documentation, see the "
|
||||
other = " documentation is no longer actively maintained. The version you are currently viewing is a static snapshot. For up-to-date information, see the "
|
||||
|
||||
[deprecation_file_warning]
|
||||
other = "Deprecated"
|
||||
|
|
|
@ -0,0 +1,15 @@
|
|||
{{ define "main" }}
|
||||
{{ if not .Site.Params.deprecated }}
|
||||
{{ .Content }}
|
||||
{{ else }}
|
||||
<div class="section-index">
|
||||
{{ range where .Site.Pages "Section" "releases" }}
|
||||
{{ if not .IsNode }}
|
||||
<div class="entry">
|
||||
<h5><a href="{{ .RelPermalink }}">{{ .Title }}</a></h5>
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
||||
{{ end }}
|
Loading…
Reference in New Issue