{% extends 'blog/base.html' %} {% load i18n wagtailcore_tags 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 %} {% else %} {{ article.owner.username|slice:':1' }} {% endif %} {{ article.owner.get_full_name }} {{ article.latest_revision_created_at|date }} {{ article.title }} {{ article.headline }} {{ 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 %}
{{ article.headline }}