mirror of https://github.com/pulumi/pulumi.git
20 lines
389 B
Cheetah
20 lines
389 B
Cheetah
{{ define "examples" -}}
|
|
{{ print "{{% examples %}}" }}
|
|
## Example Usage
|
|
|
|
{{ htmlSafe "{{< chooser language \"typescript,python,go,csharp\" / >}}" }}
|
|
|
|
{{- range . }}
|
|
{{ .Title }}
|
|
|
|
{{- range $key, $val := .Snippets }}
|
|
{{ print "{{% example " }}{{ $key }}{{ print " %}}" }}
|
|
{{ htmlSafe $val }}
|
|
{{ print "{{% /example %}}" }}
|
|
{{ end }}
|
|
|
|
{{- end }}
|
|
{{ print "{{% /examples %}}" }}
|
|
|
|
{{- end }}
|