2e55488319
Instead of this, use the docs layout named "supported-versions".
10 lines
261 B
HTML
10 lines
261 B
HTML
{{/* this shortcode is DEPRECATED */}}
|
|
{{ $versions := .Page.Param "versions" }}
|
|
{{ $thisVersion := .Page.Param "version" }}
|
|
<ul>
|
|
{{ range $versions }}
|
|
{{ if ne .version $thisVersion }}
|
|
<li><a href="{{ .url }}">{{ .version }}</a></li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul> |