Files
website/layouts/shortcodes/versions-other.html
Tim Bannister 2e55488319 Deprecate {{< versions-other >}} shortcode
Instead of this, use the docs layout named "supported-versions".
2020-08-28 14:58:17 +01:00

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>