From 22f1890a9beab11d8cfdceba3a4d66f8bbbb468c Mon Sep 17 00:00:00 2001 From: Ian Lewis Date: Fri, 29 Mar 2019 22:40:11 -0400 Subject: Initial commit --- layouts/docs/list.html | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 layouts/docs/list.html (limited to 'layouts/docs/list.html') diff --git a/layouts/docs/list.html b/layouts/docs/list.html new file mode 100644 index 000000000..4afc32653 --- /dev/null +++ b/layouts/docs/list.html @@ -0,0 +1,30 @@ +{{ define "title"}} {{ .Title}} {{end}} +{{ define "main" }} + +{{ if .Content }} +{{ .Render "content" }} +{{ else }} +
+

{{ .Title }}

+ {{ with .Params.description }}
{{ . | markdownify }}
{{ end }} +
+ +
+ +{{ range .Sections.ByWeight }} +
  • + {{.Title}} +
  • +{{ end }} + +{{ range .Paginator.Pages.ByWeight }} +
  • + {{.Title}} +
  • +{{ end }} + +
    + +{{ end }} + +{{ end }} -- cgit v1.2.3