{% if author.photo_url %}{% endif %}
{% if author.url and author.display_name %}{{ author.display_name }}
{% elif author.display_name %}{{ author.display_name }}
{% elif author.url %}{{ author.url }}
{% endif %}
{% if author.note %}
{{ author.note }}
{% endif %}
{% if author.email %} Write me: {{ author.email }}{% endif %}
{% if author.rel_me_links.all %}
Find me on:
{% for link in author.rel_me_links.all %}
{{ link.label|default:link.url }}{% if not forloop.last %} ยท {% endif %}
{% endfor %}
{% endif %}