From 43974d0908a341ef8dd5d100a63563784fdbf70c Mon Sep 17 00:00:00 2001 From: Alex Shpak Date: Wed, 5 Sep 2018 16:22:04 +0200 Subject: Initial commit --- layouts/docs/baseof.html | 25 +++++++++++++++++++++++++ layouts/docs/index.html | 7 +++++++ layouts/docs/list.html | 7 +++++++ layouts/docs/single.html | 3 +++ 4 files changed, 42 insertions(+) create mode 100644 layouts/docs/baseof.html create mode 100644 layouts/docs/index.html create mode 100644 layouts/docs/list.html create mode 100644 layouts/docs/single.html (limited to 'layouts/docs') diff --git a/layouts/docs/baseof.html b/layouts/docs/baseof.html new file mode 100644 index 0000000..7f05ac8 --- /dev/null +++ b/layouts/docs/baseof.html @@ -0,0 +1,25 @@ + + + + {{ partial "book-html-head" . }} + {{ .Site.Title }} + + + +
+
+ {{ partial "book-nav" . }} +
+
+
+
+ {{ block "main" . }}{{ end }} +
+
+ {{ partial "book-toc" . }} +
+
+
+
+ + \ No newline at end of file diff --git a/layouts/docs/index.html b/layouts/docs/index.html new file mode 100644 index 0000000..9b519ff --- /dev/null +++ b/layouts/docs/index.html @@ -0,0 +1,7 @@ +{{ define "title" }} + {{ .Title }} – {{ .Site.Title }} +{{ end }} + +{{ define "main" }} +
{{ .Content }}
+{{ end }} \ No newline at end of file diff --git a/layouts/docs/list.html b/layouts/docs/list.html new file mode 100644 index 0000000..9b519ff --- /dev/null +++ b/layouts/docs/list.html @@ -0,0 +1,7 @@ +{{ define "title" }} + {{ .Title }} – {{ .Site.Title }} +{{ end }} + +{{ define "main" }} +
{{ .Content }}
+{{ end }} \ No newline at end of file diff --git a/layouts/docs/single.html b/layouts/docs/single.html new file mode 100644 index 0000000..9b991dd --- /dev/null +++ b/layouts/docs/single.html @@ -0,0 +1,3 @@ +{{ define "main" }} +
{{ .Content }}
+{{ end }} \ No newline at end of file -- cgit v1.2.3