Fix Profile Mode imageTitle missing

fixes: #945
This commit is contained in:
Aditya Telange 2022-07-09 20:08:58 +05:30
parent 621c9f60fb
commit c0b7ea5f4b
No known key found for this signature in database
GPG key ID: 82E844EF3DA99E77
2 changed files with 2 additions and 3 deletions

View file

@ -17,7 +17,6 @@
.profile img {
display: inline-table;
border-radius: 50%;
pointer-events: none;
}
.buttons {

View file

@ -20,10 +20,10 @@
{{- $img = $img.Resize "150x150" }}
{{- end }}
{{- end }}
<img src="{{ $img.Permalink }}" alt="{{ .imageTitle | default "profile image" }}"
<img draggable="false" src="{{ $img.Permalink }}" alt="{{ .imageTitle | default "profile image" }}" title="{{ .imageTitle }}"
height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
{{- else }}
<img src="{{ .imageUrl | absURL }}" alt="{{ .imageTitle | default "profile image" }}"
<img draggable="false" src="{{ .imageUrl | absURL }}" alt="{{ .imageTitle | default "profile image" }}" title="{{ .imageTitle }}"
height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
{{- end }}
{{- end }}