diff options
author | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-05-23 16:43:54 +0200 |
---|---|---|
committer | Alex Shpak <alex-shpak@users.noreply.github.com> | 2019-05-23 16:43:54 +0200 |
commit | f3796f43f337798d7bc22b94b93c45333976ea4b (patch) | |
tree | 93c94f894107fdd4ccfc004c52ed9e06f3133897 /layouts/partials/docs | |
parent | 5437521798291b54dabb6645de0094e458c9c228 (diff) |
Change edit and date icons
Diffstat (limited to 'layouts/partials/docs')
-rw-r--r-- | layouts/partials/docs/git-footer.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layouts/partials/docs/git-footer.html b/layouts/partials/docs/git-footer.html index c61d759..ab04d9b 100644 --- a/layouts/partials/docs/git-footer.html +++ b/layouts/partials/docs/git-footer.html @@ -4,14 +4,14 @@ <div> {{ $date := .AuthorDate.Local.Format (default "January 2, 2006" $.Site.Params.BookDateFormat) }} <a href="{{ $.Site.Params.BookRepo }}/commit/{{ .Hash }}" title='Last modified {{ $date }} by {{ .AuthorName }}' target="_blank" rel="noopener"> - <img src="{{ "svg/code-merge.svg" | relURL }}" alt="Changed" /> {{ $date }} + <img src="{{ "svg/calendar.svg" | relURL }}" alt="Changed" /> {{ $date }} </a> </div> {{ end }} {{ with .Site.Params.BookEditPath }} <div> {{ if $.File }}<a href="{{ $.Site.Params.BookRepo }}/{{ . }}/{{ $.File.Path }}" target="_blank" rel="noopener"> - <img src="{{ "svg/code-fork.svg" | relURL }}" alt="Edit" /> Edit this page + <img src="{{ "svg/edit.svg" | relURL }}" alt="Edit" /> Edit this page </a>{{ end }} </div> {{ end }} |