diff options
author | Jordi Bares <jordibares@hotmail.com> | 2019-04-02 22:22:10 +0100 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-04-09 22:31:24 +0200 |
commit | 629c4bb1d4857086db8a9b39baead24c2af809a9 (patch) | |
tree | 367d3cb5b647d3ac5161518452dee553f5b13f5d | |
parent | 655de364ea38b06c2f21614f9007524474891ddd (diff) |
Various fixes responding to Alex notes
-rw-r--r-- | .DS_Store | bin | 8196 -> 6148 bytes | |||
-rw-r--r-- | exampleSite/.DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | exampleSite/content/.DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | layouts/.DS_Store | bin | 6148 -> 6148 bytes | |||
-rw-r--r-- | layouts/docs/baseof.html | 2 | ||||
-rw-r--r-- | layouts/partials/docs/.DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | layouts/partials/docs/html-head.html | 8 | ||||
-rw-r--r-- | layouts/partials/docs/inject/footer.html (renamed from layouts/partials/docs/footer.html) | 1 | ||||
-rw-r--r-- | static/.DS_Store | bin | 0 -> 6148 bytes | |||
-rw-r--r-- | static/custom.css | 5 | ||||
-rw-r--r-- | static/img/favicon.ico | bin | 0 -> 1150 bytes | |||
-rw-r--r-- | static/styles.css | 0 |
12 files changed, 4 insertions, 12 deletions
Binary files differ diff --git a/exampleSite/.DS_Store b/exampleSite/.DS_Store Binary files differnew file mode 100644 index 0000000..0c55ec1 --- /dev/null +++ b/exampleSite/.DS_Store diff --git a/exampleSite/content/.DS_Store b/exampleSite/content/.DS_Store Binary files differnew file mode 100644 index 0000000..64d3620 --- /dev/null +++ b/exampleSite/content/.DS_Store diff --git a/layouts/.DS_Store b/layouts/.DS_Store Binary files differindex c1f243e..d442f7f 100644 --- a/layouts/.DS_Store +++ b/layouts/.DS_Store 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" . }} </div> {{ template "toc" . }} diff --git a/layouts/partials/docs/.DS_Store b/layouts/partials/docs/.DS_Store Binary files differnew file mode 100644 index 0000000..5008ddf --- /dev/null +++ b/layouts/partials/docs/.DS_Store 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 @@ <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>{{- template "title" . }} | {{ .Site.Title -}}</title> -<!-- Font Awesome 5.8/1 no need for local files using all.css so all icons are available --> -<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous"> - <!-- Fonts for the theme --> <link href="https://fonts.googleapis.com/css?family=Oxygen|Oxygen+Mono:300,400,700" rel="stylesheet"> @@ -14,10 +11,11 @@ <link rel="stylesheet" href="{{ $styles.RelPermalink }}"> <!-- Custom stylesheet - for your changes --> -<link rel="stylesheet" href="{{ "custom.css" | relURL }}?v={{ now.Unix }}" type='text/css' media='all'> +{{ if (fileExists "static/img/banner.jpg") -}} +<link rel="stylesheet" href="{{ "styles.css" | relURL }}?v={{ now.Unix }}" type='text/css' media='all'> +{{- end }} <!-- Favicon --> -<link rel="shortcut icon" href="{{ "img/favicon.ico" | absURL }}" type="image/x-icon"> <link rel="icon" href="{{ "img/favicon.ico" | absURL }}" type="image/x-icon"> <!-- RSS --> diff --git a/layouts/partials/docs/footer.html b/layouts/partials/docs/inject/footer.html index bc4a406..3bdbc9d 100644 --- a/layouts/partials/docs/footer.html +++ b/layouts/partials/docs/inject/footer.html @@ -5,7 +5,6 @@ <p> {{ . | markdownify }} </p> - {{ else }} <p> Made with Book Theme by <a target="_blank" href="https://github.com/alex-shpak/hugo-book">Alex Shpak</a>. diff --git a/static/.DS_Store b/static/.DS_Store Binary files differnew file mode 100644 index 0000000..0ce3c02 --- /dev/null +++ b/static/.DS_Store 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 Binary files differnew file mode 100644 index 0000000..b090f4d --- /dev/null +++ b/static/img/favicon.ico diff --git a/static/styles.css b/static/styles.css new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/static/styles.css |