{# Author Compact Card - h-card microformat (compact version for blog sidebars) #} {% set id = homepageConfig.identity if (homepageConfig and homepageConfig.identity) else {} %} {% set authorName = id.name if (id.name is defined) else site.author.name %} {% set authorAvatar = id.avatar if (id.avatar is defined) else site.author.avatar %} {% set authorTitle = id.title if (id.title is defined) else site.author.title %} {% set authorUrl = id.url if (id.url is defined and id.url) else site.author.url %} {% set authorLocality = id.locality if (id.locality is defined) else site.author.locality %} {% set authorCountry = id.country if (id.country is defined) else site.author.country %} {% set authorBio = id.bio if (id.bio is defined) else site.author.bio %} {% set authorEmail = id.email if (id.email is defined) else site.author.email %} {% set authorOrg = id.org if (id.org is defined) else site.author.org %}
{# Hidden u-photo for reliable microformat parsing #}
{{ authorName }} {% if authorTitle %}

{{ authorTitle }}

{% endif %} {% if authorLocality %}

{{ authorLocality }}{% if authorCountry %}, {{ authorCountry }}{% endif %}

{% endif %}
{# Hidden but present for microformat completeness #} {% if authorBio %}{% endif %} {% if authorEmail %}{% endif %} {% if authorOrg %}{% endif %}