{% if latestBlogs|length > 0 %}
<div class="container my-16">
<div class="row">
<div class="d-flex flex-column gap-3">
<h2 class="fw-bold text-center sec-title">
آکادمی
</h2>
<p class="text-muted mb-4 text-center" id="ecmPowerDesc">
آخرین مقالات از آکادمی پـــوشــــه
</p>
</div>
</div>
<div class="row g-0 g-sm-4 g-lg-5 tech-row">
{% for item in latestBlogs %}
<div class="col-12 col-sm-6 col-lg-3 tech-wrapper">
<div class="tech-box text-center p-4 h-100 rounded">
<div class="mb-3">
<img class="w-100 blog-item-img" alt="{{ item.title }}" src="{{ item.image|imagine_filter('indexBlog') }}">
</div>
<h3 class="tech-title fs-5 text-right">{{ item.title }}</h3>
{# <p class="tech-desc text-muted small">#}
{# {{ blog.description }}#}
{# </p>#}
</div>
</div>
{% endfor %}
</div>
</div>
<style>
.blog-item-img{
border-radius:0.5vh;
}
</style>
{% endif %}