diff options
author | Wolfgang Müller | 2024-10-05 11:22:07 +0200 |
---|---|---|
committer | Wolfgang Müller | 2024-10-05 11:22:07 +0200 |
commit | 265cfe2d5a4dbb2f95890add2dde772becf0e567 (patch) | |
tree | 5a70b31eba1ae46e61ccb7ce5eb9f9e51bfc8d78 /templates | |
parent | 9130351091f8d947bddfdb3b11718f1078e286ba (diff) | |
download | zunzuncito-265cfe2d5a4dbb2f95890add2dde772becf0e567.tar.gz |
templates: Add "Authored by" to the avatar's alt property
Diffstat (limited to '')
-rw-r--r-- | templates/macros.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/macros.html b/templates/macros.html index f504f76..648d4b0 100644 --- a/templates/macros.html +++ b/templates/macros.html @@ -1,7 +1,7 @@ {% macro render_post(post, class="feed") -%} <article class="{{ class }}"> <header> - <img class="avatar" alt="{{ config.extra.author }}" src="{{ config.extra.avatar }}" width="64" /> + <img class="avatar" alt="Authored by: {{ config.extra.author }}" src="{{ config.extra.avatar }}" width="64" /> <div class="banner smaller"> <div class="info"> <time class="mute" datetime="{{ post.date }}" title="{{ post.date }}">{{ post.date | date(format="%F") }}</time> |