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

25 lines
1 KiB
HTML
Raw Normal View History

<div class="flex justify-between">
{{ if .Site.IsMultiLingual }}
2019-11-10 00:23:06 +01:00
{{ partial "docs/languages" . }}
{{ end }}
2019-11-16 21:32:23 +01:00
{{ if and .GitInfo .Site.Params.BookRepo }}
2018-12-03 08:17:01 +01:00
<div>
{{ $date := .GitInfo.AuthorDate.Local.Format (default "January 2, 2006" .Site.Params.BookDateFormat) }}
<a class="flex align-center" href="{{ .Site.Params.BookRepo }}/commit/{{ .GitInfo.Hash }}" title='{{ i18n "Last modified by" }} {{ .GitInfo.AuthorName }} | {{ $date }}' target="_blank" rel="noopener">
2019-12-09 11:05:49 +01:00
<img src="{{ "svg/calendar.svg" | relURL }}" class="book-icon" alt="Calendar" />
2019-10-08 23:25:33 +02:00
<span>{{ $date }}</span>
</a>
</div>
{{ end }}
2019-11-16 21:32:23 +01:00
{{ if and .File .Site.Params.BookRepo .Site.Params.BookEditPath }}
<div>
<a class="flex align-center" href="{{ .Site.Params.BookRepo }}/{{ .Site.Params.BookEditPath }}/{{ replace .File.Path "\\" "/" }}" target="_blank" rel="noopener">
2019-12-09 11:05:49 +01:00
<img src="{{ "svg/edit.svg" | relURL }}" class="book-icon" alt="Edit" />
2019-11-10 00:23:06 +01:00
<span>{{ i18n "Edit this page" }}</span>
2019-10-08 23:25:33 +02:00
</a>
2018-12-03 08:17:01 +01:00
</div>
{{ end }}
</div>