{# SPDX-License-Identifier: AGPL-3.0-or-later #} {# SPDX-FileCopyrightText: 2026 JWP Consulting GK #} {% extends "blog/blog_base.html" %} {% load i18n %} {% load projectify %} {% block title %} {% translate "Projectify Blog" %} {% endblock %} {% block blog_content %}

{% translate "Blog" %}

{% if posts %}
{% for post in posts %}

{% anchor href=post.get_absolute_url label=post.title %} {% blocktrans with author=post.author date=post.published %}{{ date }}{% endblocktrans %} {% if request.user.is_staff %} {% anchor href="admin:blog_post_change" object_id=post.pk label="(Edit)" %} {% endif %}

{% endfor %}
{% else %}

{% translate "No blog posts yet." %}

{% endif %}
{% endblock blog_content %}