{% extends 'articles/base.html' %} {% block append_css %} {% endblock %} {% block title %}{{ article.title }} | {% endblock %} {% block content %}

{{ article.title }}{% if article.status != article.PUBLISHED %} ({{ article.status }}){% endif %}

{% include "articles/snippets/metadata.html" %}
{{ article.get_formatted_content|safe }}
{% if article.get_related_articles %}

You might also like

{% for related in article.get_related_articles %}
{{ related.title }}

{{ related.get_description }}

{% endfor %}
{% endif %} {% endblock %}