{% extends "base.html" %}
{% load wagtailcore_tags wagtailimages_tags roost_tags %}
{% block title %}{{ author.name }}{% endblock %}
{% block meta %}
{% if author.bio %}
{% endif %}
{% social_meta author.seo_meta %}
{% endblock %}
{% block extra_head %}
{% include "roost/includes/_json_ld.html" %}
{% endblock %}
{% block content %}
{{ author.name }}
{% if author.photo %}{% image author.photo fill-200x200 %}{% endif %}
{% if author.bio %}{{ author.bio|richtext }}{% endif %}
{% if author.social_links.all %}
{% endif %}
{% for article in articles %}
{% include "roost/includes/_article_card.html" %}
{% empty %}
No articles yet.
{% endfor %}
{% endblock %}