diff --git a/content/en/docs/ambient/getting-started/_index.md b/content/en/docs/ambient/getting-started/_index.md index 8829b8592b502..889a9bca31e2d 100644 --- a/content/en/docs/ambient/getting-started/_index.md +++ b/content/en/docs/ambient/getting-started/_index.md @@ -6,8 +6,9 @@ aliases: - /docs/ops/ambient/getting-started - /latest/docs/ops/ambient/getting-started owner: istio/wg-networking-maintainers -skip_list: true test: yes +skip_list: true +next: /docs/ambient/getting-started/deploy-sample-app --- This guide lets you quickly evaluate Istio's {{< gloss "ambient" >}}ambient mode{{< /gloss >}}. You'll need a Kubernetes cluster to proceed. If you don't have a cluster, you can use [kind](/docs/setup/platform-setup/kind) or any other [supported Kubernetes platform](/docs/setup/platform-setup). diff --git a/content/en/docs/ambient/getting-started/cleanup/index.md b/content/en/docs/ambient/getting-started/cleanup/index.md index 640e203c629a5..7e5a0b0c54e1a 100644 --- a/content/en/docs/ambient/getting-started/cleanup/index.md +++ b/content/en/docs/ambient/getting-started/cleanup/index.md @@ -4,6 +4,7 @@ description: Delete Istio and associated resources. weight: 6 owner: istio/wg-networking-maintainers test: yes +next: /docs/ambient/install --- If you no longer need Istio and associated resources, you can delete them by following the steps in this section. diff --git a/content/en/docs/ambient/getting-started/deploy-sample-app/index.md b/content/en/docs/ambient/getting-started/deploy-sample-app/index.md index 60ed499b68e36..a01e80055245a 100644 --- a/content/en/docs/ambient/getting-started/deploy-sample-app/index.md +++ b/content/en/docs/ambient/getting-started/deploy-sample-app/index.md @@ -4,6 +4,7 @@ description: Deploy the Bookinfo sample application. weight: 2 owner: istio/wg-networking-maintainers test: yes +prev: /docs/ambient/getting-started --- To explore Istio, you will install the sample [Bookinfo application](/docs/examples/bookinfo/), composed of four separate microservices used to demonstrate various Istio features. diff --git a/content/en/docs/ambient/install/_index.md b/content/en/docs/ambient/install/_index.md index bf75507d29733..062a8b0d17236 100644 --- a/content/en/docs/ambient/install/_index.md +++ b/content/en/docs/ambient/install/_index.md @@ -8,6 +8,7 @@ aliases: owner: istio/wg-environment-maintainers test: n/a list_below: yes +prev: /docs/ambient/getting-started/cleanup --- {{< tip >}} diff --git a/layouts/partials/posts_navigation.html b/layouts/partials/posts_navigation.html index 1fbc7dde81481..1e91018a24dda 100644 --- a/layouts/partials/posts_navigation.html +++ b/layouts/partials/posts_navigation.html @@ -1,15 +1,25 @@ {{ $skipPageNav := .Scratch.Get "skipPageNav" }} {{ if not (or .Params.skip_pagenav $skipPageNav) }} - {{ if or .NextInSection .PrevInSection }} + {{ $prev := .NextInSection }} + {{ $next := .PrevInSection }} + {{ with .Params.prev }} + {{$prev = $.Site.GetPage $.Site.Language.Lang .}} + {{ end }} + + {{ with .Params.next }} + {{$next = $.Site.GetPage $.Site.Language.Lang .}} + {{ end }} + + {{ if or $prev $next }}