{% extends 'base.html.twig' %} {% block body %} {% set author_pic = null %} {% if author.picture is defined and author.picture %} {% set author_pic = author.picture %} {% elseif author.image is defined and author.image %} {% set author_pic = author.image %} {% endif %} {% set author_label = author.display_name|default(author.name|default(npub|shortenNpub)) %}
{% if author_pic %}
{{ author_label }}
{% endif %}

{% if author.about is defined %} {{ author.about|markdown_to_html|mentionify|linkify }} {% endif %}

{% endblock %} {% block aside %} {% endblock %}