{% extends "base.html" %} {% block title %}{{ site_display_name() }} — {{ site_tagline() }}{% endblock %} {% block content %}

{{ site_display_name() }}

{{ site_tagline() }}

{% if plugin_area_main_content %}
{{ plugin_area_main_content | safe }}
{% endif %} {% if posts %}
{% for post in posts %}
{% if post.image_url or post.hero_image_url %} {{ post.title }} {% endif %}
{% if post.category and post.category.lower() not in ['none', 'null', 'uncategorized', ''] %} {{ post.category }} {% else %} {% endif %} {% if post.published_at %} 📅 {{ post.published_at.strftime("%d.%m.%Y") }} {% endif %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt | truncate(130) }}

{% endif %}
{% if post.author_name %}✍️ {{ post.author_name }}{% endif %} {{ t('blog.readMore') if t else 'Citește' }} →
{% endfor %}
{% else %}

📭 {{ t('blog.no_posts') if t else 'Nu există articole publicate momentan.' }}

{% endif %}
{% endblock %}