summaryrefslogtreecommitdiff
path: root/layouts/partials/docs
diff options
context:
space:
mode:
authorJordi Bares <jordibares@hotmail.com>2019-03-31 22:48:17 +0100
committerAlex Shpak <alex-shpak@users.noreply.github.com>2019-04-09 22:31:24 +0200
commit45271b5298d4a5dd91df97a1d3f3c726bd9398bc (patch)
treec703c7c5567fa4343e203a2bebf2ba60e87f5ea9 /layouts/partials/docs
parent941ca77a327f595e50e0cd22d35e984afb29530d (diff)
Add footer functionality
Diffstat (limited to 'layouts/partials/docs')
-rw-r--r--layouts/partials/docs/footer.html15
-rw-r--r--layouts/partials/docs/html-head.html19
2 files changed, 34 insertions, 0 deletions
diff --git a/layouts/partials/docs/footer.html b/layouts/partials/docs/footer.html
new file mode 100644
index 0000000..bc4a406
--- /dev/null
+++ b/layouts/partials/docs/footer.html
@@ -0,0 +1,15 @@
+<!-- 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/partials/docs/html-head.html b/layouts/partials/docs/html-head.html
index 5d6f1c1..7b412f7 100644
--- a/layouts/partials/docs/html-head.html
+++ b/layouts/partials/docs/html-head.html
@@ -2,11 +2,30 @@
<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">
+
+<!-- Theme stylesheet, if possible do not edit this stylesheet -->
<link rel="stylesheet" href="{{ "normalize.min.css" | relURL }}">
{{ $styles := resources.Get "book.scss" | resources.ToCSS | resources.Minify | resources.Fingerprint }}
<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'>
+
+<!-- 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 -->
+{{ if .RSSLink }}
+<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title | default "" }}" />
+<link href="{{ .RSSLink }}" rel="feed" type="application/rss+xml" title="{{ .Site.Title | default "" }}" />
+{{ end }}
+
{{ "<!--" | safeHTML }}
Made with Book Theme
https://github.com/alex-shpak/hugo-book