{% extends 'blog/base.html' %}{% load i18n blog wagtailimages_tags %} {% block title %} {{ block.super }} | {{ article.get_parent }} | {{ article }} {% endblock %} {% block meta %} {% endblock %} {% block content %}
{% include 'blog/components/breadcrumbs.html' %}
{% image article.image fill-1920x1080 %}
{% if article.owner.wagtail_userprofile.avatar %}
{{ article.owner }}
{% else %}
{{ article.owner.username|slice:':1' }}
{% endif %}

{{ article.owner.get_full_name }}

{{ article.latest_revision_created_at|date }}

{{ article.title }}

{{ article.description }}

{{ article.content }}
{% for tag in article.tags.all %} {{ tag }} {% endfor %}

{% trans 'Suggested' %}

    {% for article in article.get_ordered_siblings.specific %} {% include 'blog/components/article-1.html' %} {% endfor %}
{% endblock %} {% block drawer_content %}
  • {{ article.get_parent.title }}
  • {% endblock %}