{# author-bio-hero (cyberpunk override) — author-page header from the `authors` provider. #} {% if author %}
{% if showAvatar and author.avatar_url %}
{% img author.avatar_url alt=author.display_name class="h-full w-full object-cover" %}
{% endif %}

{{ author.display_name }}

{% if author.job_title or author.company %}

{{ author.job_title }}{% if author.job_title and author.company %} · {% endif %}{{ author.company }}

{% endif %} {% if author.bio %}

{{ author.bio }}

{% endif %}
{% if showPostCount %}{{ author.post_count|default:0 }} post{% if author.post_count != 1 %}s{% endif %}{% endif %} {% if author.location %}{{ author.location }}{% endif %}
{% if showSocial %}
{% if author.website_url %}{% endif %} {% if author.twitter_handle %}{% endif %} {% if author.linkedin_url %}{% endif %} {% if author.github_url %}{% endif %}
{% endif %}
{% endif %}