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 { .profile img {
display: inline-table; display: inline-table;
border-radius: 50%; border-radius: 50%;
pointer-events: none;
} }
.buttons { .buttons {

View File

@ -20,10 +20,10 @@
{{- $img = $img.Resize "150x150" }} {{- $img = $img.Resize "150x150" }}
{{- end }} {{- end }}
{{- 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 }}" /> height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
{{- else }} {{- 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 }}" /> height="{{ .imageHeight | default 150 }}" width="{{ .imageWidth | default 150 }}" />
{{- end }} {{- end }}
{{- end }} {{- end }}