5ae0d0dd8d
* Reorganize docs contrib guide * Address first round of feedback from Brad, Jared * Standardize on 'SIG Docs' * Address more feedback * Rewrites to participating.md * Tweak navigation titles * Document PR Wrangler * Document SIG Docs chairperson * Fix codeblock that shows how to use <codenew> It was being interpreted as a Hugo shortcode.
14 lines
361 B
HTML
14 lines
361 B
HTML
{{ define "content" }}
|
|
{{ with .Content }}
|
|
{{ partial "docs/content_page" (dict "ctx" $ "page" $ ) }}
|
|
{{ else }}
|
|
{{ if ge (len .Pages) 1 }}
|
|
{{ $page := index .Pages 0 }}
|
|
{{ partial "docs/content_page" (dict "ctx" $ "page" $page) }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ define "side-menu" }}
|
|
{{ partial "docs/side-menu.html" . }}
|
|
{{ end }}
|