mirror of https://github.com/jpanther/congo.git
♿️ Use author name for images when available
parent
edd8ab5bcb
commit
97313e9f04
|
@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
### Changed
|
||||
|
||||
- Profile image alt text now uses author name when available
|
||||
|
||||
### Fixed
|
||||
|
||||
- Search not working when `baseURL` does not end with a forward slash ([#224](https://github.com/jpanther/congo/pull/224))
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
class="w-24 h-24 !mt-0 !mb-0 ltr:mr-4 rtl:ml-4 rounded-full"
|
||||
width="96"
|
||||
height="96"
|
||||
alt="Author"
|
||||
alt="{{ $.Site.Author.name | default "Author" }}"
|
||||
src="{{ $authorImage.RelPermalink }}"
|
||||
/>
|
||||
{{ end }}
|
||||
|
|
|
@ -12,7 +12,7 @@
|
|||
class="mb-2 rounded-full w-36 h-36"
|
||||
width="144"
|
||||
height="144"
|
||||
alt="Author"
|
||||
alt="{{ $.Site.Author.name | default "Author" }}"
|
||||
src="{{ $authorImage.RelPermalink }}"
|
||||
/>
|
||||
{{ end }}
|
||||
|
|
Loading…
Reference in New Issue