Files
website/layouts/shortcodes/deprecationwarning.html
Rahulkrishnan R A 2004d28809 Link will be broken when deprecation is false (#13685)
Link to the latest docs will be broker when deprecation set to false when do the next release
This issue solved in v1.13 with PR #13649
2019-04-08 17:55:04 -07:00

14 lines
332 B
HTML

{{ if .Page.Param "deprecated" }}
<section id="deprecationWarning">
<main>
<div class="content deprecation-warning">
<h3>
Kubernetes {{ .Page.Param "version" }}
{{ T "deprecation_warning" }}
<a href="{{ .Site.Params.currentUrl }}">{{ T "latest_version" }}</a>
</h3>
</div>
</main>
</section>
{{ end }}