Refactor footer

soper-book
Alex Shpak 2019-11-16 21:32:23 +01:00
parent aaf236410e
commit 1addb8dca6
8 changed files with 23 additions and 14 deletions

View File

@ -1 +1 @@
{"Target":"book.min.d54f2886415be97240a76611f87e576a761d64c07020a767fa0ffd1bdc8bda93.css","MediaType":"text/css","Data":{"Integrity":"sha256-1U8ohkFb6XJAp2YR+H5XanYdZMBwIKdn+g/9G9yL2pM="}} {"Target":"book.min.9655dddcbdb7746824f6a5a12c435a2fd6b9c5d6d7928958bf434d9563068728.css","MediaType":"text/css","Data":{"Integrity":"sha256-llXd3L23dGgk9qWhLENaL9a5xdbXkolYv0NNlWMGhyg="}}

View File

@ -1 +0,0 @@
{"Target":"book.min.9655dddcbdb7746824f6a5a12c435a2fd6b9c5d6d7928958bf434d9563068728.css","MediaType":"text/css","Data":{"Integrity":"sha256-llXd3L23dGgk9qWhLENaL9a5xdbXkolYv0NNlWMGhyg="}}

View File

@ -4,6 +4,9 @@
- id: Edit this page - id: Edit this page
translation: Edit this page translation: Edit this page
- id: Last modified by
translation: Last modified by
- id: bookSearchConfig - id: bookSearchConfig
translation: | translation: |
{ {

View File

@ -4,5 +4,8 @@
- id: Edit this page - id: Edit this page
translation: Edit this page translation: Edit this page
- id: Last modified by
translation: Last modified by
- id: bookSearchConfig - id: bookSearchConfig
translation: '{ cache: true }' translation: '{ cache: true }'

View File

@ -4,5 +4,8 @@
- id: Edit this page - id: Edit this page
translation: Редактировать эту сраницу translation: Редактировать эту сраницу
- id: Last modified by
translation: Last modified by
- id: bookSearchConfig - id: bookSearchConfig
translation: '{ split: /[^a-zа-яё0-9\w]/gi }' translation: '{ split: /[^a-zа-яё0-9\w]/gi }'

View File

@ -1,24 +1,27 @@
{{ if or .GitInfo .Site.Params.BookEditPath }}
<div class="book-footer justify-between"> <div class="book-footer justify-between">
{{ if .Site.IsMultiLingual }}
{{ partial "docs/languages" . }} {{ partial "docs/languages" . }}
{{ end }}
{{ if and .GitInfo .Site.Params.BookRepo }}
{{ with .GitInfo }} {{ with .GitInfo }}
<div> <div>
{{ $date := .AuthorDate.Local.Format (default "January 2, 2006" $.Site.Params.BookDateFormat) }} {{ $date := .AuthorDate.Local.Format (default "January 2, 2006" $.Site.Params.BookDateFormat) }}
<a class="flex align-center" href="{{ $.Site.Params.BookRepo }}/commit/{{ .Hash }}" title='Last modified {{ $date }} by {{ .AuthorName }}' target="_blank" rel="noopener"> <a class="flex align-center" href="{{ $.Site.Params.BookRepo }}/commit/{{ .Hash }}" title='{{ i18n "Last modified by" }} {{ .AuthorName }} | {{ $date }}' target="_blank">
<img src="{{ "svg/calendar.svg" | relURL }}" alt="Changed" /> <img src="{{ "svg/calendar.svg" | relURL }}" alt="Calendar" />
<span>{{ $date }}</span> <span>{{ $date }}</span>
</a> </a>
</div> </div>
{{ end }} {{ end }}
{{ with .Site.Params.BookEditPath }} {{ end }}
{{ if and .File .GitInfo .Site.Params.BookRepo .Site.Params.BookEditPath }}
<div> <div>
{{ if $.File }} <a class="flex align-center" href="{{ .Site.Params.BookRepo }}/{{ .Site.Params.BookEditPath }}/{{ .File.Path }}" target="_blank">
<a class="flex align-center" href="{{ $.Site.Params.BookRepo }}/{{ . }}/{{ $.File.Path }}" target="_blank" rel="noopener"> <img src="{{ "svg/edit.svg" | relURL }}" alt="Edit" />
<img src="{{ "svg/edit.svg" | relURL }}" alt="{{ i18n "Edit this page" }}" />
<span>{{ i18n "Edit this page" }}</span> <span>{{ i18n "Edit this page" }}</span>
</a> </a>
{{ end }}
</div> </div>
{{ end }} {{ end }}
</div> </div>
{{ end }}

View File

@ -1,4 +1,3 @@
{{ if .Site.IsMultiLingual }}
<!-- Merge home and current page translations --> <!-- Merge home and current page translations -->
{{ $langs := dict }} {{ $langs := dict }}
{{ range .Site.Home.AllTranslations }} {{ range .Site.Home.AllTranslations }}
@ -29,4 +28,3 @@
</ul> </ul>
</div> </div>
{{ end }}