Date Posted: May 08, 2025
{{!-- blogs-grid --}}
<section class="container-fluid history-company" id="blogSection">
<div class="container-fluid">
<div class="row d-flex align-items-center justify-content-center">
<div class="" id="blog-posts">
{{#each blogPosts}}
<a class="blogBox"
data-servicelyType="blogItem"
data-servicelyContentEditionDisabled="true"
data-servicelyPageLink="/blogs/{{#if this.slug}}{{this.slug}}{{else}}blog-{{this.id}}{{/if}}"
href="/blogs/{{#if this.slug}}{{this.slug}}{{else}}blog-{{this.id}}{{/if}}"
>
<div>
<div class="imageWrap">
<img src="{{this.image}}" />
</div>
<p class="date formatDate">
{{{formatDate this.datePosted}}}
</p>
<h3>{{this.title}}</h3>
<p>{{this.subtitle}}</p>
<p>{{this.author}}</p>
</div>
</a>
{{/each}}
</div>
</div>
</div>
</section>
{{!-- /blogs-grid --}}