19 lines
895 B
HTML
19 lines
895 B
HTML
{{ $currentVersion := (index (findRE "[^/]+.*?" .RelPermalink) 0) .RelPermalink }}
|
|
{{ $stableVersion := $.Site.Data.versions.stable_version }}
|
|
{{ $stableVersionURL := replaceRE "[^/]+.*?[0]" $stableVersion .RelPermalink }}
|
|
{{ if lt $currentVersion $stableVersion }}
|
|
<div class="warn old-version">
|
|
<p>
|
|
This page documents an earlier version of InfluxDB. InfluxDB {{ $stableVersion }} is the latest stable version.<br/>
|
|
<a href="{{ $stableVersionURL }}">View this page in the {{ $stableVersion }} documentation</a>.
|
|
</p>
|
|
</div>
|
|
{{ else if gt $currentVersion $stableVersion }}
|
|
<div class="note old-version">
|
|
<p>
|
|
This page documents a pre-release version of InfluxDB. InfluxDB {{ $stableVersion }} is the latest stable version.<br/>
|
|
<a href="{{ $stableVersionURL }}">View this page in the {{ $stableVersion }} documentation</a>.
|
|
</p>
|
|
</div>
|
|
{{ end }}
|