{% extends "public/base.html" %} {% block title %}Blog — {{ gallery.public_name or gallery.name }}{% endblock %} {% block content %}

{{ _("Blog") }}

{% if posts %} {% for post in posts %}
{{ post.published_at|ch_date if post.published_at else "" }}

{{ post.title }}

{{ _("Read more") }}
{% endfor %} {% else %}

No posts published yet.

{% endif %}
{% endblock %}