{% extends 'base.html' %} {% load commonmark %} {% block title %} News | {{ block.super }} {% endblock %} {% block content %} {% if request.resolver_match.kwargs.archived %} Showing archived news items. Show regular news items {% endif %} {% for item in news_items %}

{{ item.title }} {{ item.published_at|date:"Y-m-d" }}

{{ item.content|commonmark }} {% if not forloop.last %}
{% endif %} {% empty %}

No news yet. Stay tuned!

{% endfor %} {% if not request.resolver_match.kwargs.archived %}
Show archived news items {% endif %} {% endblock %}