From 629c4bb1d4857086db8a9b39baead24c2af809a9 Mon Sep 17 00:00:00 2001 From: Jordi Bares Date: Tue, 2 Apr 2019 22:22:10 +0100 Subject: Various fixes responding to Alex notes --- .DS_Store | Bin 8196 -> 6148 bytes exampleSite/.DS_Store | Bin 0 -> 6148 bytes exampleSite/content/.DS_Store | Bin 0 -> 6148 bytes layouts/.DS_Store | Bin 6148 -> 6148 bytes layouts/docs/baseof.html | 2 +- layouts/partials/docs/.DS_Store | Bin 0 -> 6148 bytes layouts/partials/docs/footer.html | 15 --------------- layouts/partials/docs/html-head.html | 8 +++----- layouts/partials/docs/inject/footer.html | 14 ++++++++++++++ static/.DS_Store | Bin 0 -> 6148 bytes static/custom.css | 5 ----- static/img/favicon.ico | Bin 0 -> 1150 bytes static/styles.css | 0 13 files changed, 18 insertions(+), 26 deletions(-) create mode 100644 exampleSite/.DS_Store create mode 100644 exampleSite/content/.DS_Store create mode 100644 layouts/partials/docs/.DS_Store delete mode 100644 layouts/partials/docs/footer.html create mode 100644 layouts/partials/docs/inject/footer.html create mode 100644 static/.DS_Store delete mode 100644 static/custom.css create mode 100644 static/img/favicon.ico create mode 100644 static/styles.css diff --git a/.DS_Store b/.DS_Store index 0a66c9f..d223a41 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/exampleSite/.DS_Store b/exampleSite/.DS_Store new file mode 100644 index 0000000..0c55ec1 Binary files /dev/null and b/exampleSite/.DS_Store differ diff --git a/exampleSite/content/.DS_Store b/exampleSite/content/.DS_Store new file mode 100644 index 0000000..64d3620 Binary files /dev/null and b/exampleSite/content/.DS_Store differ diff --git a/layouts/.DS_Store b/layouts/.DS_Store index c1f243e..d442f7f 100644 Binary files a/layouts/.DS_Store and b/layouts/.DS_Store differ diff --git a/layouts/docs/baseof.html b/layouts/docs/baseof.html index 57c4bec..aaf5f57 100644 --- a/layouts/docs/baseof.html +++ b/layouts/docs/baseof.html @@ -19,7 +19,7 @@ {{ partial "docs/mobile-header" . }} {{ template "main" . }} {{ partial "docs/git-footer" . }} - {{ partial "docs/footer" . }} + {{ partial "docs/inject/footer" . }} {{ template "toc" . }} diff --git a/layouts/partials/docs/.DS_Store b/layouts/partials/docs/.DS_Store new file mode 100644 index 0000000..5008ddf Binary files /dev/null and b/layouts/partials/docs/.DS_Store differ diff --git a/layouts/partials/docs/footer.html b/layouts/partials/docs/footer.html deleted file mode 100644 index bc4a406..0000000 --- a/layouts/partials/docs/footer.html +++ /dev/null @@ -1,15 +0,0 @@ - -{{ if .Site.Params.BookShowFooter }} - -{{ end }} \ No newline at end of file diff --git a/layouts/partials/docs/html-head.html b/layouts/partials/docs/html-head.html index 7b412f7..40fbfe0 100644 --- a/layouts/partials/docs/html-head.html +++ b/layouts/partials/docs/html-head.html @@ -2,9 +2,6 @@ {{- template "title" . }} | {{ .Site.Title -}} - - - @@ -14,10 +11,11 @@ - +{{ if (fileExists "static/img/banner.jpg") -}} + +{{- end }} - diff --git a/layouts/partials/docs/inject/footer.html b/layouts/partials/docs/inject/footer.html new file mode 100644 index 0000000..3bdbc9d --- /dev/null +++ b/layouts/partials/docs/inject/footer.html @@ -0,0 +1,14 @@ + +{{ if .Site.Params.BookShowFooter }} + +{{ end }} \ No newline at end of file diff --git a/static/.DS_Store b/static/.DS_Store new file mode 100644 index 0000000..0ce3c02 Binary files /dev/null and b/static/.DS_Store differ diff --git a/static/custom.css b/static/custom.css deleted file mode 100644 index 1ada68e..0000000 --- a/static/custom.css +++ /dev/null @@ -1,5 +0,0 @@ -@charset "UTF-8"; - -p { - margin: 0.67em 0; -} diff --git a/static/img/favicon.ico b/static/img/favicon.ico new file mode 100644 index 0000000..b090f4d Binary files /dev/null and b/static/img/favicon.ico differ diff --git a/static/styles.css b/static/styles.css new file mode 100644 index 0000000..e69de29 -- cgit v1.2.3