diff --git a/templates/article.html b/templates/article.html index 28a14f2..525e582 100644 --- a/templates/article.html +++ b/templates/article.html @@ -83,7 +83,11 @@ {% endif %} {% for author in article.authors %} - {{ author|title }} + {% set author_name = author.name | title %} + {% if AUTHORS_BIO and author.name.lower() in AUTHORS_BIO %} + {% set author_name = AUTHORS_BIO[author.name.lower()].name or author.name %} + {% endif %} + {{ author_name }} {% endfor %} | @@ -137,21 +141,20 @@ {% for author in article.authors %} {% if AUTHORS_BIO and author.name.lower() in AUTHORS_BIO %}