aboutsummaryrefslogtreecommitdiff
path: root/layouts/docs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--layouts/docs/list.html2
-rw-r--r--layouts/docs/single.html10
2 files changed, 11 insertions, 1 deletions
diff --git a/layouts/docs/list.html b/layouts/docs/list.html
index bbd9f22..b6087f8 100644
--- a/layouts/docs/list.html
+++ b/layouts/docs/list.html
@@ -1,6 +1,6 @@
{{ define "main" }}
-<h1>{{ .Title }}</h1>
+{{ partial "breadcrumbs.html" . }}
{{ with .Content }}
{{ . }}
diff --git a/layouts/docs/single.html b/layouts/docs/single.html
new file mode 100644
index 0000000..124695b
--- /dev/null
+++ b/layouts/docs/single.html
@@ -0,0 +1,10 @@
+{{ define "main" }}
+
+{{ partial "breadcrumbs.html" . }}
+
+{{ partial "toc.html" . }}
+
+{{ .Content }}
+
+{{ end }}
+