Fix author name

This commit is contained in:
samaradel
2022-04-27 10:56:47 +02:00
parent fad1eb77f3
commit 47d4a9dcf1
2 changed files with 15 additions and 4 deletions

View File

@@ -23,8 +23,8 @@
<li class="author-list-item">
<a href="{{fullpath}}" tooltip="{{author}}">
<img src="{{ page.extra.authorImg }}" alt="{{ author }}" class="
w-8
h-8
w-10
h-10
rounded-full
bg-gray-200
border-2 border-white
@@ -41,7 +41,7 @@
{% for author in page.extra.authors %}
{% set fullpath = "/people/" ~ author | replace(from='_', to='-' ) %}
<span>
<a href="{{fullpath}}" tooltip="{{author}}" class="hover:underline">{{ author | replace(from='_', to=' '
<a href="{{fullpath}}" tooltip="{{author}}" class="hover:underline text-gray-800">{{ author | replace(from='_', to=' '
) }}</a>
</span>
{% endfor %}