{# ================================================================================ Author Bio Component ================================================================================ Full author bio block: avatar, name, title, bio text, links. Used in blog post footer and about page. Usage: {{ author_bio(author, avatar, title, bio, links) }} ================================================================================ #} {% def author_bio(author, avatar='', title='', bio='', links=none) %} {% let link_list = links | default([]) %}
{% if avatar %} {{ author }} {% end %}

About {{ author }}

{% if title %}

{{ title }}

{% end %}
{% if bio %}

{{ bio }}

{% end %} {% if link_list | length > 0 %} {% end %}
{% end %}