From 08cad1f0e83a5cab6feaddac6cff32b0b7abef87 Mon Sep 17 00:00:00 2001 From: outfoxxed Date: Tue, 23 Jul 2024 22:21:02 -0700 Subject: [PATCH] template: fix module page headers --- layouts/docs/list.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 layouts/docs/list.html diff --git a/layouts/docs/list.html b/layouts/docs/list.html new file mode 100644 index 0000000..fc5c73a --- /dev/null +++ b/layouts/docs/list.html @@ -0,0 +1,18 @@ +{{ define "main" }} +
+ {{ partial "sidebar.html" (dict "context" .) }} + {{ partial "toc.html" . }} +
+
+ {{ partial "breadcrumb.html" . }} +
+ {{- if not (isset .Params "hidetitle") -}}

{{ .Title }}

{{- end -}} + {{ .Content }} +
+ {{ partial "components/last-updated.html" . }} + {{ partial "components/pager.html" . }} + {{ partial "components/comments.html" . }} +
+
+
+{{ end }}