version-banner.html 739 B

12345678910111213141516
  1. <!-- Check the variable that indicates whether this is an archived doc set.
  2. If yes, display a banner. -->
  3. {{ if .Site.Params.archived_version }}
  4. {{ $color := "primary" }}
  5. {{ $latest_version := .Site.Params.url_latest_version }}
  6. {{ $current_version := .Site.Params.version }}
  7. <div class="pageinfo pageinfo-{{ $color }}">
  8. {{ with $current_version }}<p>Version {{ . | markdownify }} of the
  9. documentation is no longer actively maintained. The site that you are
  10. currently viewing is an archived snapshot.
  11. {{ with $latest_version }}For up-to-date documentation, see the
  12. <a href="{{ $latest_version | safeURL }}" target="_blank">latest version</a>.</p>
  13. {{ end }}
  14. {{ end }}
  15. </div>
  16. {{ end }}