diff options
Diffstat (limited to 'themes/hugo-book/layouts/_partials/docs/footer.html')
| -rw-r--r-- | themes/hugo-book/layouts/_partials/docs/footer.html | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/themes/hugo-book/layouts/_partials/docs/footer.html b/themes/hugo-book/layouts/_partials/docs/footer.html new file mode 100644 index 0000000..01d8322 --- /dev/null +++ b/themes/hugo-book/layouts/_partials/docs/footer.html @@ -0,0 +1,29 @@ +<div class="flex flex-wrap justify-between"> + +{{ if and .GitInfo .Site.Params.BookLastChangeLink }} +<div> + {{- $date := partial "docs/date" (dict "Date" .Lastmod "Format" .Site.Params.BookDateFormat) -}} + <a class="flex align-center" href="{{ partial "docs/links/commit" . }}" title='{{ i18n "Last modified by" }} {{ .GitInfo.AuthorName }} | {{ $date }}' target="_blank" rel="noopener"> + <img src="{{ "svg/calendar.svg" | relURL }}" class="book-icon" alt="" /> + <span>{{ $date }}</span> + </a> +</div> +{{ end }} + +{{ if and .File .Site.Params.BookEditLink }} +<div> + <a class="flex align-center" href="{{ partial "docs/links/edit" . }}" target="_blank" rel="noopener edit"> + <img src="{{ "svg/edit.svg" | relURL }}" class="book-icon" alt="" /> + <span>{{ i18n "Edit this page" }}</span> + </a> +</div> +{{ end }} + +</div> + +{{ partial "docs/prev-next" . }} + +{{ $script := resources.Get "clipboard.js" | resources.Minify }} +{{ with $script.Content }} + <script>{{ . | safeJS }}</script> +{{ end }} |
