docs/daprdocs/layouts/partials/version-banner.html

25 lines
1.0 KiB
HTML

<!-- Check the variable that indicates whether this is an archived doc set.
If yes, display a banner. -->
{{ if .Site.Params.archived_version }}
{{ $color := "primary" }}
{{ $latest_version := .Site.Params.url_latest_version }}
{{ $current_version := .Site.Params.version }}
<div class="pageinfo pageinfo-{{ $color }}">
{{ with $current_version }}<p>The documentation you are viewing is for Dapr {{ . | markdownify }}
which is an older version of Dapr.
{{ with $latest_version }}For up-to-date documentation, see the
<a href="{{ $latest_version | safeURL }}" target="_blank" rel="nofollow noopener noreferrer">latest version</a>.</p>
{{ end }}
{{ end }}
</div>
{{ end }}
<!-- Check the variable that indicates whether this is a preview doc set.
If yes, display a banner. -->
{{ if .Params.is_preview }}
{{ $color := "primary" }}
<div class="pageinfo pageinfo-{{ $color }}">
<p>This is documentation about a preview version of Dapr features.</p>
</div>
{{ end }}