{% extends "base.html" %} {% block title %}{{ site_display_name() }} — {{ site_tagline() }}{% endblock %} {% block content %}
{% if plugin_area_main_content %} {{ plugin_area_main_content | safe }} {% endif %}
✨ Jurnal Tehnologic & Povești

{{ site_display_name() }}

{{ site_tagline() or 'Articole, ghiduri tehnice și impresii din călătorii.' }}

{% if posts %}
{% for post in posts %}
{% set thumb_url = post.hero_image_url or post.image_url %} {% if thumb_url %} {% endif %}
{% if post.category %} {{ post.category }} {% endif %} {% if post.author_name %} ✍️ {{ t_safe(translations, 'blog.author', 'Autor') }}: {{ post.author_name }} {% endif %} {% if post.published_at %} 📅 {{ post.published_at.strftime("%d.%m.%Y") }} {% endif %} {% if post.draft %} Draft {% endif %}

{{ post.title }}

{% if post.excerpt %}

{{ post.excerpt }}

{% endif %}
{% endfor %}
{% if total_pages and total_pages > 1 %} {% endif %} {% else %}
📝

Nu există articole publicate

Fii primul autor care publică o poveste sau un ghid pe acest blog!

{% if user and user.role in ['admin', 'editor'] %} ✍️ Scrie un articol acum {% endif %}
{% endif %}
{% endblock %}