{% set CARD_SIZE = "s12 m6 l4" %} {% set BREADCRUMB_ELEMENTS = [("Authors", "authors"), (author.name, None)] %} {% set HIDE_AUTHOR_AVATAR = True %} {% set HIDE_AUTHOR_NAME = True %} {% extends "index.html" %} {% block styles %} {{ super() }} {% endblock %} {% if '&' in author.name %} {% set label = 'authors' %} {% else %} {% set label = 'author' %} {% endif %} {% if author.profile_page.profile_title %} {% set profile_title = author.profile_page.profile_title %} {% elif author.profile_page.summary %} {% set profile_title = author.profile_page.summary %} {% endif %} {% block title %} {{ profile_title or "Articles by {label} '{author.name}'".format(author=author, label=label) }} | {{ SITENAME }} {% endblock %} {% if author.profile_page.banner_color %} {% set BANNER_COLOR = author.profile_page.banner_color %} {% elif author.profile_page.banner_image %} {% set BANNER = author.profile_page.banner_image %} {% endif %} {% block bannerimage %} {% if author.profile_page.author_avatar %} {% else %} {% if SHOW_SITELOGO|default(True) %} {% endif %} {% endif %} {% endblock %} {% block bannertext %} {% if author.profile_page.summary %}

'{{ author.name }}'

{{ author.profile_page.summary }}

{% else %}

Articles by {{ label }}

'{{ author.name }}'

{% endif %} {% endblock %} {% block content_head %} {% if author.profile_page %}
{{ author.profile_page.content }}
{% endif %} {% endblock %} {% block content_tail %}
{% if author.profile_page and author.profile_page.comments != "closed" %} {% include "includes/comments.html" %} {% endif %}
{% endblock%}