{% if article is defined %} {% set card_title = article.title|default('')|trim %}
{% if category %} {{ category }} {% else %} {% if not is_author_profile %}

by

{% endif %} {{ article.createdAt|date('F j Y') }} {% endif %}
{% if category %}{{ category }}{% endif %} {% if article.image %} Cover image for {{ card_title != '' ? card_title : (article.slug|default('')) }} {% endif %}

{% if card_title != '' %}{{ card_title }}{% else %}{{ article.slug|default('')|replace({'-': ' '})|title }}{% endif %}

{% if article.summary %}

{{ article.summary }}

{% endif %}
{% endif %}