Files
website/layouts/shortcodes/deprecationwarning.html
Rahulkrishnan R A fed2014111 Typo in the deprecation warning and link is broken to latest docs (#13460) (#13649)
v1.13 deprecation warning link to the latest docs was broken.This issue fixed the broken link as well as the typo in the deprecation warning
2019-04-07 00:46:25 -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 }}