Add "preview" banner.

Signed-off-by: Phillip Hoff <phillip@orst.edu>
This commit is contained in:
Phillip Hoff 2023-01-26 14:12:30 -08:00
parent 06aa5f5bc7
commit e23e6e20ba
2 changed files with 10 additions and 1 deletions

View File

@ -5,11 +5,11 @@ linkTitle: "SDKs"
weight: 2000
description: "Develop pluggable components in your favorite language"
no_list: true
is_preview: true
---
The Dapr SDKs are the easiest way for you to create Dapr Pluggable Components. Choose your favorite language and get up and running with Dapr in minutes.
## Pluggable Components SDKs
| Language | Status |

View File

@ -13,3 +13,12 @@
{{ 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 }}