You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
320 B
HTML
15 lines
320 B
HTML
4 years ago
|
{{/*
|
||
|
|
||
|
This template is used to embed module documentation in the client-server API spec.
|
||
|
|
||
|
It searches the site for pages of type "module", sorts them by weight, and
|
||
|
emits the page's rendered content.
|
||
|
|
||
|
*/}}
|
||
|
|
||
|
{{ $modules := where site.Pages "Type" "module" }}
|
||
|
|
||
|
{{ range $modules.ByWeight }}
|
||
|
{{ .Content }}
|
||
|
{{ end }}
|