{% extends "base.html" %} {% block title %}Blog — ArtNode{% endblock %} {% block content %}
{% if not groups and not ungrouped %}

No posts yet.

{% endif %} {% for group_id, posts in groups.items() %}
{{ posts[0].title }}
+ Add Translation
{% for post in posts %}
{{ post.language|upper }}
{{ post.title }}
{% if post.is_published %} Published {% else %} Draft {% endif %} {{ post.published_at|ch_date if post.published_at else post.created_at|ch_date }} Edit
{% endfor %}
{% endfor %} {% for post in ungrouped %}
{{ post.language|upper }}
{{ post.title }}
{% if post.is_published %}Published {% else %}Draft{% endif %} Edit
{% endfor %}
{% endblock %}