File: /home/artinside/fhs.artinside.com.br/themes/web/service.php
<?php $this->layout("_theme");
$this->insert("views/page-title", ["pageTitle" => $pageTitle, "breadcrumb" => $breadcrumb]);
?>
<section id="content">
<div class="content-wrap">
<div class="container clearfix">
<div class="row justify-content-center ">
<div class="col-xl-6 mt">
<div class="d-flex position-relative flex-column h-100 overflow-hidden"
style="">
<div class="position-relative z-1">
<span class="badge rounded-pill text-white px-3 py-2 mb-2 fw-normal bg-secondary">Nossos Serviços</span>
<h3 class="display-6 mb-3 fw-medium text-uppercase"><?= $service->title?></h3>
<p class="op-09 mb-5">
<?=
str_replace("<li>", "<li class='p-2 bg-secondary bg-opacity-10 rounded-5 op-1 m-2'><i class='bi-check-circle-fill text-secondary'></i> ", $service->content);
?>
</p>
</div>
</div>
</div>
<div class="col-xl-6">
<img src="<?= image($service->cover, 600, 600)?>" class="rounded-5">
</div>
</div>
</div>
</div>
</section><!-- #content end -->
<?php $this->insert("views/newsletter-widget2"); ?>