diff options
Diffstat (limited to 'layouts')
-rw-r--r-- | layouts/.DS_Store | bin | 6148 -> 0 bytes | |||
-rw-r--r-- | layouts/partials/.DS_Store | bin | 6148 -> 0 bytes | |||
-rw-r--r-- | layouts/partials/docs/.DS_Store | bin | 6148 -> 0 bytes | |||
-rw-r--r-- | layouts/partials/docs/html-head.html | 4 | ||||
-rw-r--r-- | layouts/partials/docs/inject/footer.html | 14 | ||||
-rw-r--r-- | layouts/posts/baseof.html | 1 |
6 files changed, 2 insertions, 17 deletions
diff --git a/layouts/.DS_Store b/layouts/.DS_Store Binary files differdeleted file mode 100644 index d442f7f..0000000 --- a/layouts/.DS_Store +++ /dev/null diff --git a/layouts/partials/.DS_Store b/layouts/partials/.DS_Store Binary files differdeleted file mode 100644 index b1bc858..0000000 --- a/layouts/partials/.DS_Store +++ /dev/null diff --git a/layouts/partials/docs/.DS_Store b/layouts/partials/docs/.DS_Store Binary files differdeleted file mode 100644 index 5008ddf..0000000 --- a/layouts/partials/docs/.DS_Store +++ /dev/null diff --git a/layouts/partials/docs/html-head.html b/layouts/partials/docs/html-head.html index 40fbfe0..24f675a 100644 --- a/layouts/partials/docs/html-head.html +++ b/layouts/partials/docs/html-head.html @@ -11,12 +11,12 @@ <link rel="stylesheet" href="{{ $styles.RelPermalink }}"> <!-- Custom stylesheet - for your changes --> -{{ if (fileExists "static/img/banner.jpg") -}} +{{ if (fileExists "styles.css" | relURL) -}} <link rel="stylesheet" href="{{ "styles.css" | relURL }}?v={{ now.Unix }}" type='text/css' media='all'> {{- end }} <!-- Favicon --> -<link rel="icon" href="{{ "img/favicon.ico" | absURL }}" type="image/x-icon"> +<link rel="icon" href="{{ "img/favicon.ico" | relURL }}" type="image/x-icon"> <!-- RSS --> {{ if .RSSLink }} diff --git a/layouts/partials/docs/inject/footer.html b/layouts/partials/docs/inject/footer.html index 3bdbc9d..e69de29 100644 --- a/layouts/partials/docs/inject/footer.html +++ b/layouts/partials/docs/inject/footer.html @@ -1,14 +0,0 @@ -<!-- Copyright notice --> -{{ if .Site.Params.BookShowFooter }} -<div class="align-center book-git-footer justify-center"> - {{ range .Site.Params.Copyright }} - <p> - {{ . | markdownify }} - </p> - {{ else }} - <p> - Made with Book Theme by <a target="_blank" href="https://github.com/alex-shpak/hugo-book">Alex Shpak</a>. - </p> - {{ end }} -</div> -{{ end }}
\ No newline at end of file diff --git a/layouts/posts/baseof.html b/layouts/posts/baseof.html index 6e49ce8..47e0ed5 100644 --- a/layouts/posts/baseof.html +++ b/layouts/posts/baseof.html @@ -19,7 +19,6 @@ {{ template "main" . }} </div> </main> - {{ partial "docs/inject/body" . }} {{ template "_internal/google_analytics_async.html" . }} |