hugo-book-theme/layouts/partials/docs/footer.html

27 lines
1.2 KiB
HTML
Raw Permalink Normal View History

2020-05-01 17:35:08 +02:00
<div class="flex flex-wrap justify-between">
2019-11-16 21:32:23 +01:00
{{ if and .GitInfo .Site.Params.BookRepo }}
{{- $date := partial "docs/date" (dict "Date" .GitInfo.AuthorDate.Local "Format" .Site.Params.BookDateFormat) -}}
{{- $commitPath := default "commit" .Site.Params.BookCommitPath -}}
<a class="flex align-center" href="{{ .Site.Params.BookRepo }}/{{ $commitPath }}/{{ .GitInfo.Hash }}" title='{{ i18n "Last modified by" }} {{ .GitInfo.AuthorName }} | {{ $date }}' target="_blank" rel="noopener">
<img src="{{ "svg/calendar.svg" | relURL }}" class="book-icon" alt="Calendar" />
<span>{{ $date }}</span>
</a>
{{ end }}
2019-11-16 21:32:23 +01:00
{{ if and .File .Site.Params.BookRepo .Site.Params.BookEditPath }}
<a class="flex align-center" href="{{ .Site.Params.BookRepo }}/{{ .Site.Params.BookEditPath }}/{{ .Site.Params.contentDir | default "content" }}/{{ replace .File.Path "\\" "/" }}" target="_blank" rel="noopener">
<img src="{{ "svg/edit.svg" | relURL }}" class="book-icon" alt="Edit" />
<span>{{ i18n "Edit this page" }}</span>
</a>
{{ end }}
</div>
2021-05-03 23:52:00 +02:00
{{ partial "docs/prev-next" . }}
2021-05-03 23:52:00 +02:00
{{ $script := resources.Get "clipboard.js" | resources.Minify }}
{{ with $script.Content }}
<script>{{ . | safeJS }}</script>
{{ end }}