2018-12-15 03:53:50 +00:00
|
|
|
{{ if or .GitInfo .Site.Params.BookEditPath }}
|
2019-11-13 23:23:01 +00:00
|
|
|
<div class="book-footer justify-between">
|
2019-11-09 23:23:06 +00:00
|
|
|
{{ partial "docs/languages" . }}
|
2018-12-15 03:53:50 +00:00
|
|
|
{{ with .GitInfo }}
|
2018-12-03 07:17:01 +00:00
|
|
|
<div>
|
2019-04-22 17:17:39 +00:00
|
|
|
{{ $date := .AuthorDate.Local.Format (default "January 2, 2006" $.Site.Params.BookDateFormat) }}
|
2019-10-08 21:25:33 +00:00
|
|
|
<a class="flex align-center" href="{{ $.Site.Params.BookRepo }}/commit/{{ .Hash }}" title='Last modified {{ $date }} by {{ .AuthorName }}' target="_blank" rel="noopener">
|
|
|
|
<img src="{{ "svg/calendar.svg" | relURL }}" alt="Changed" />
|
|
|
|
<span>{{ $date }}</span>
|
2018-12-15 03:53:50 +00:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{ end }}
|
|
|
|
{{ with .Site.Params.BookEditPath }}
|
|
|
|
<div>
|
2019-10-08 21:25:33 +00:00
|
|
|
{{ if $.File }}
|
|
|
|
<a class="flex align-center" href="{{ $.Site.Params.BookRepo }}/{{ . }}/{{ $.File.Path }}" target="_blank" rel="noopener">
|
2019-11-13 23:23:01 +00:00
|
|
|
<img src="{{ "svg/edit.svg" | relURL }}" alt="{{ i18n "Edit this page" }}" />
|
2019-11-09 23:23:06 +00:00
|
|
|
<span>{{ i18n "Edit this page" }}</span>
|
2019-10-08 21:25:33 +00:00
|
|
|
</a>
|
|
|
|
{{ end }}
|
2018-12-03 07:17:01 +00:00
|
|
|
</div>
|
2018-12-15 03:53:50 +00:00
|
|
|
{{ end }}
|
2018-12-03 07:17:01 +00:00
|
|
|
</div>
|
|
|
|
{{ end }}
|