fix: avatar_url use get_url

This commit is contained in:
st1020 2023-12-04 19:33:35 +08:00
parent c900940ca2
commit f7731a9083
3 changed files with 3 additions and 3 deletions

View file

@ -19,7 +19,7 @@
>
<img
class="{% if config.extra.profile.avatar_invert %}dark:invert{% endif %} my-0 aspect-square w-16 rounded-full !bg-black/5 hover:animate-spin"
src="{{ config.extra.profile.avatar_url }}"
src="{{ get_url(path=config.extra.profile.avatar_url) }}"
alt="{{ config.extra.profile.name | default(value=config.title) }}"
/>
</div>