From 1147a663e70aadb2578cbe601bc723d7cd939c5a Mon Sep 17 00:00:00 2001 From: aethrvmn Date: Sat, 30 Aug 2025 15:17:32 +0200 Subject: added non-content --- layouts/partials/docs/footer.html | 31 ++++++++++++++++++ layouts/partials/docs/header.html | 17 ++++++++++ layouts/partials/docs/html-head-title.html | 5 +++ layouts/partials/docs/inject/body.html | 1 + layouts/partials/docs/inject/content-after.html | 1 + layouts/partials/docs/inject/content-before.html | 21 +++++++++++++ layouts/partials/docs/inject/footer.html | 0 layouts/partials/docs/inject/head.html | 0 layouts/partials/docs/inject/menu-after.html | 4 +++ layouts/partials/docs/inject/menu-before.html | 0 layouts/partials/docs/inject/toc-after.html | 0 layouts/partials/docs/inject/toc-before.html | 0 layouts/partials/docs/menu.html | 40 ++++++++++++++++++++++++ 13 files changed, 120 insertions(+) create mode 100644 layouts/partials/docs/footer.html create mode 100644 layouts/partials/docs/header.html create mode 100644 layouts/partials/docs/html-head-title.html create mode 100644 layouts/partials/docs/inject/body.html create mode 100644 layouts/partials/docs/inject/content-after.html create mode 100644 layouts/partials/docs/inject/content-before.html create mode 100644 layouts/partials/docs/inject/footer.html create mode 100644 layouts/partials/docs/inject/head.html create mode 100644 layouts/partials/docs/inject/menu-after.html create mode 100644 layouts/partials/docs/inject/menu-before.html create mode 100644 layouts/partials/docs/inject/toc-after.html create mode 100644 layouts/partials/docs/inject/toc-before.html create mode 100644 layouts/partials/docs/menu.html (limited to 'layouts/partials/docs') diff --git a/layouts/partials/docs/footer.html b/layouts/partials/docs/footer.html new file mode 100644 index 0000000..1edbcfa --- /dev/null +++ b/layouts/partials/docs/footer.html @@ -0,0 +1,31 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/layouts/partials/docs/header.html b/layouts/partials/docs/header.html new file mode 100644 index 0000000..9e4488c --- /dev/null +++ b/layouts/partials/docs/header.html @@ -0,0 +1,17 @@ +
+ + + +
diff --git a/layouts/partials/docs/html-head-title.html b/layouts/partials/docs/html-head-title.html new file mode 100644 index 0000000..bb7ef46 --- /dev/null +++ b/layouts/partials/docs/html-head-title.html @@ -0,0 +1,5 @@ +{{ if .IsHome }} + {{ .Site.Title -}} +{{ else }} + {{ partial "docs/title" . }} | {{ .Site.Title -}} +{{ end }} diff --git a/layouts/partials/docs/inject/body.html b/layouts/partials/docs/inject/body.html new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/layouts/partials/docs/inject/body.html @@ -0,0 +1 @@ + diff --git a/layouts/partials/docs/inject/content-after.html b/layouts/partials/docs/inject/content-after.html new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/layouts/partials/docs/inject/content-after.html @@ -0,0 +1 @@ + diff --git a/layouts/partials/docs/inject/content-before.html b/layouts/partials/docs/inject/content-before.html new file mode 100644 index 0000000..d33168e --- /dev/null +++ b/layouts/partials/docs/inject/content-before.html @@ -0,0 +1,21 @@ +
+{{ if not .IsHome}} + {{ if .Title }} +

{{ .Title }}

+ {{ else }} +

{{ .Site.Title }}

+ {{ end }} + {{ if and .GitInfo .Site.Params.BookRepo }} +
+ {{- $date := partial "docs/date" (dict "Date" .GitInfo.AuthorDate.Local "Format" .Site.Params.BookDateFormat) -}} + + + + + + {{ $date | lower }} + +
+ {{ end }} +{{ end }} +
diff --git a/layouts/partials/docs/inject/footer.html b/layouts/partials/docs/inject/footer.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/docs/inject/head.html b/layouts/partials/docs/inject/head.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/docs/inject/menu-after.html b/layouts/partials/docs/inject/menu-after.html new file mode 100644 index 0000000..d1e7152 --- /dev/null +++ b/layouts/partials/docs/inject/menu-after.html @@ -0,0 +1,4 @@ +
+
+

all content is licensed under the EU Public License v1.2

+

EU TDM Act Article 4 - Rights Reserved

diff --git a/layouts/partials/docs/inject/menu-before.html b/layouts/partials/docs/inject/menu-before.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/docs/inject/toc-after.html b/layouts/partials/docs/inject/toc-after.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/docs/inject/toc-before.html b/layouts/partials/docs/inject/toc-before.html new file mode 100644 index 0000000..e69de29 diff --git a/layouts/partials/docs/menu.html b/layouts/partials/docs/menu.html new file mode 100644 index 0000000..4d6f6b8 --- /dev/null +++ b/layouts/partials/docs/menu.html @@ -0,0 +1,40 @@ + + + +{{ $script := resources.Get "menu-reset.js" | resources.Minify }} +{{ with $script.Content }} + +{{ end }} -- cgit v1.2.3