File tree Expand file tree Collapse file tree 8 files changed +31
-1
lines changed Expand file tree Collapse file tree 8 files changed +31
-1
lines changed Original file line number Diff line number Diff line change @@ -3,3 +3,5 @@ title: Composition
3
3
weight : 51
4
4
description : Understand Crossplane's core components
5
5
---
6
+
7
+ {{< auto-index >}}
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ weight: 40
4
4
description : Get started with Crossplane.
5
5
---
6
6
7
+ {{< auto-index >}}
Original file line number Diff line number Diff line change 2
2
title : Guides
3
3
weight : 100
4
4
description : Crossplane integrations and detailed examples.
5
- ---
5
+ ---
6
+
7
+ {{< auto-index >}}
Original file line number Diff line number Diff line change @@ -3,3 +3,5 @@ title: Managed Resources
3
3
weight : 52
4
4
description : Understand Crossplane's managed resources and selective activation
5
5
---
6
+
7
+ {{< auto-index >}}
Original file line number Diff line number Diff line change @@ -5,3 +5,5 @@ state: alpha
5
5
alphaVersion : 2.0
6
6
description : Understand Crossplane's Operations feature
7
7
---
8
+
9
+ {{< auto-index >}}
Original file line number Diff line number Diff line change @@ -3,3 +3,5 @@ title: Packages
3
3
weight : 53
4
4
description : Understand Crossplane's core components
5
5
---
6
+
7
+ {{< auto-index >}}
Original file line number Diff line number Diff line change
1
+ {{/*
2
+ Auto-generates an index page with links to child pages, ordered by weight.
3
+ Usage: {{ partial "auto-index" . }}
4
+ */}}
5
+ {{ if .RegularPages }}
6
+ < div class ="auto-index ">
7
+ < p > Topics in this section:</ p >
8
+ < ul >
9
+ {{ range .RegularPages.ByWeight }}
10
+ < li > < a href ="{{ .Permalink }} "> {{ .Title }}</ a > {{ if .Params.description }} - {{ .Params.description }}{{ end }}</ li >
11
+ {{ end }}
12
+ </ ul >
13
+ </ div >
14
+ {{ end }}
Original file line number Diff line number Diff line change
1
+ {{/*
2
+ Shortcode to auto-generate an index of child pages.
3
+ Usage: {{< auto-index > }}
4
+ */}}
5
+ {{ partial "auto-index" .Page }}
You can’t perform that action at this time.
0 commit comments