{% extends 'articles/base.html' %} {% block feed_link %} {{ block.super }} {% if feed_url and feed_title %} {% endif %} {% endblock %} {% block append_css %} {% endblock %} {% block title %}{% if view.html_title %}{{ view.html_title }} | {% endif %}{% endblock %} {% block content %}

{% block main_title %}{{ view.main_title }}{% endblock %}

{% block search_bar %}{% endblock %} {% for article in articles %}

{% include "articles/snippets/datetime.html" %} {{ article.title }}

{% empty %} {% block empty_results %}

No article here. Come back later 🙂

{% endblock %} {% endfor %}
{% if article %}

{{ article.title }}{% include "articles/snippets/admin_link.html" %}

{{ article.get_formatted_content|safe }}
{% endif %} {% endblock %}