Files
website/layouts/shortcodes/versions-other.html
Bjørn Erik Pedersen 7f3b633aa0 Convert site to Hugo (#8316)
This commit converts content and layout to use Hugo.
2018-05-05 09:00:51 -07:00

9 lines
222 B
HTML

{{ $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>