website/layouts/docs/list.html

14 lines
361 B
HTML
Raw Normal View History

{{ define "content" }}
{{ with .Content }}
2018-11-24 16:03:52 +00:00
{{ partial "docs/content-page" (dict "ctx" $ "page" $ ) }}
{{ else }}
{{ if ge (len .Pages) 1 }}
{{ $page := index .Pages 0 }}
2018-11-24 16:03:52 +00:00
{{ partial "docs/content-page" (dict "ctx" $ "page" $page) }}
{{ end }}
{{ end }}
{{ end }}
{{ define "side-menu" }}
{{ partial "docs/side-menu.html" . }}
{{ end }}