{% extends "public_base.html" %} {% block title %}{{ _('Blog') }} — {{ SPLENT_APP }}{% endblock %} {% block hero %} {{ render_block('hero', eyebrow=_('Blog'), title=_('Blog'), subtitle=_('News and updates.')) }} {% endblock %} {% block content %}
{% for p in posts %} {% if p.featured_image %}{% endif %}

{{ p.title }}

{{ p.date.strftime('%d %b %Y') }}

{% if p.excerpt %}
{{ p.excerpt | safe }}
{% endif %} {% if p.categories %}

{% for c in p.categories %}{{ c.name }}{% endfor %}

{% endif %}
{% else %}

{{ _('No posts yet.') }}

{% endfor %}
{% endblock %}