{# Breadcrumb #}
{# Cover Image #}
{% if article_object.cover %}
{% endif %}
{# Title #}
{{ article_object.title }}
{# Meta #}
{{ article_object.publish_datetime|date:"F d, Y" }}
·
{% reading_time article_object.content %} {% trans "min read" %}
{% with article_authors=article_object.get_authors %}
{% if article_authors %}
·
{% trans "By" %} {{ article_authors.0.get_full_name }}
{% endif %}
{% endwith %}
{# Introduction #}
{% if article_object.introduction %}
{{ article_object.introduction|safe }}
{% endif %}
{# Content #}
{{ article_object.content|demote_headings|safe }}
{# Featured Image (before CTA) #}
{% if article_object.image %}
{% endif %}
{# Call to Action #}
{% get_article_cta article_object.id as cta %}
{% if cta %}
{% endif %}
{# Tags #}
{% with article_tags=article_object.tags.all %}
{% if article_tags %}
{% trans "Tags" %}:
{% for tag in article_tags %}
{% endfor %}
{% endif %}
{% endwith %}
{# Author Box #}
{% with article_authors=article_object.get_authors %}
{% if article_authors %}
{% endif %}
{% endwith %}
{# Previous/Next Navigation #}
{% get_adjacent_articles article_object as nav %}
{% if nav.previous or nav.next %}
{% endif %}
{% endblock lotus_content %}